IE 7.0 Issue with ASP.NET 2.0 application

  • Thread starter Thread starter deepchopra1981
  • Start date Start date
D

deepchopra1981

Hi All,

I have a modaldialog that postbacks, this worked fine in IE6. With
IE7 when the postback occurs it opens a new page. The page contains
content regions (.net 1.1), all the user controls and base page on
this page have the <base target=_self. Is there another place that
needs to be set now with IE7. If anyone can help that would be great.
Thanks in advance
 
Hi All,

I have a modaldialog that postbacks, this worked fine in IE6. With
IE7 when the postback occurs it opens a new page. The page contains
content regions (.net 1.1), all the user controls and base page on
this page have the <base target=_self. Is there another place that
needs to be set now with IE7. If anyone can help that would be great.
Thanks in advance

Which target value has a link that opened the modaldialog? Maybe you
can post the code of your pages here...
 
all the user controls and base page on this page have the <base
target=_self.

IE7 is much more standards compliant than IE6.

Have you tried <base target="_self" /> (quotes and self-closing)...
 
Back
Top