Modal Popup Issue Again (IE7)

  • Thread starter Thread starter SlashDrew
  • Start date Start date
S

SlashDrew

I had the issue in which modal windows would spawn new windows on
a .NET postback, and so like a good developer, I added <base
target="_self" /> to the .aspx page and everything worked fine. Now,
however, in IE7 it seems that this issue has returned and the old
solution no longer works. Am I wrong? Is this working for others?
 
I had the issue in which modal windows would spawn new windows on
a .NET postback, and so like a good developer, I added <base
target="_self" /> to the .aspx page and everything worked fine. Now,
however, in IE7 it seems that this issue has returned and the old
solution no longer works. Am I wrong? Is this working for others?

Ha, this is awesome. If you go here <http://msdn2.microsoft.com/en-us/
library/ms535191.aspx>, you'll find a little caveat at the top of the
page saying it has to be in the head AND before any references to
external files, such as script files or css files. Moving it to the
top of my <head> tag resolved the issue.
 
Back
Top