I have a main application window,from this we have one link(UUU) ,clicking on this will open a popup window.
When I do a logout in main window and refresh the pop up window will lead to session expiration and redirect to the login page.
Then If I do login in the popup window and click on the link UUU is opening in the same window instead of opening in the new popup window.
Following is the code description.
If session is getting expired,I am changing the popup window name and redirect to login page.
In aspx page, javascript code
In firefox,it is working fine(opening in a new window(tab)) but in IE ,it is opening in the same window.
Is anybody knows whether this is the expected behavior of IE or have any other solution?
Regards,
Blacky
When I do a logout in main window and refresh the pop up window will lead to session expiration and redirect to the login page.
Then If I do login in the popup window and click on the link UUU is opening in the same window instead of opening in the new popup window.
Following is the code description.
If session is getting expired,I am changing the popup window name and redirect to login page.
In aspx page, javascript code
Code:
function alertMe()
{
window.name="test";
window.location="http://login.aspx";
}
In firefox,it is working fine(opening in a new window(tab)) but in IE ,it is opening in the same window.
Is anybody knows whether this is the expected behavior of IE or have any other solution?
Regards,
Blacky
Comment