Page submission problem with safari

Posted by jestges on Stack Overflow See other posts from Stack Overflow or by jestges
Published on 2010-05-18T08:39:24Z Indexed on 2010/05/18 8:40 UTC
Read the original article Hit count: 211

Filed under:
|
|
|

Hi I'm working with a simple application in asp.net (c#). In my page1 I've a load button in that load button click event I try to open another window. In my second window I've a button If I click on that button my intension is to reload parent page (i.e page1). So I try to use this script

scriptString = " window.opener.location.href = myparentpage; window.opener.document.getElementById('ValidationSummary1').style.display='none';";

Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "script", scriptString);

But it is not working in Safari.

Is there any solution?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about c#