Form Authentication and new browser instance
Pierre,
The problem appears to be that your "http://localhost" root doesn't match
the base URL for the originating page. There are two possible reasons for
this:
1. The originating page was loaded over HTTPS, and/or
2. The originating page was loaded using a different server name/IP (even
if this also points to the local machine).
Either way, the solution is the same: use a relative URL in the window.open
call. For example, if the originating page is in the directory above the
"members" directory, use the following call:
window.open( 'members/target_page.aspx', '_blank', sFeatures);
If the originating page is inside the "members" directory, just use the page
name:
window.open( 'target_page.aspx', '_blank', sFeatures);
HTH,
Nicole
|