When opening up a new page (window.open) from a modal dialog page (window.showmodaldialog), ASP.NET may request authentication again by redirecting the user back to a login page. The reason is IE may have lost its session. Problem and solution to this problem is described in http://support.microsoft.com/kb/831678.
This problem happens to both IE 6 and IE 7.
4 comments:
Thanks for this post. I looked all over for a work around and I finally found it. It's definitely going to help me out a lot as I do not have time to re-implement the pages from the parent page after using modal dialog popups two levels deep. Really appreciate this.
I believe that they fixed this in the latest update, if you have the beta release.
Very good Jason !!! Resolve my problem ! Thks
Session is lost in IE9 on Ajax request as well:
ajaxObj.open("GET", url, false);
No problems with FF/Chrome, any keys to solution ?
Post a Comment