Authentication on Popup windows
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Im using a forms authentication for my web app. My app contains several popup windows which were triggered by a client script (e.g Windows.Open("myurl.aspx"); ). What happens to the popup windows is that it shows the login page first before showing/redirecting to its "real" contents. As if the page is not authenticated when in fact the user already logged in from the login page (the first page of the app)... What seems to be happening here? what's the cause? and what should I do to validate or authenticate these popup windows? Thanks.