I have a web page which has 3 frames-top, middle & bottom. The top & the bottom frames always remain static; whatever interaction has to be done with the user is being done in the middle frame. The middle frame shows a "Logout" link. When the "Logout" link is clicked, the user is taken to SignOut.asp which does something. Please note that all these things are happening in the middle frame. What I want is when SignOut.asp finishes its work, the user should be redirected to another page but this page should not have frames. For e.g. if the user is redirected to the entire browser window should display index.html i.e. index.html should not be in the middle frame along with the static top & bottom frames; rather index.html should cover the entire browser window. If I simply issue a command saying
, then index.html opens up in the middle frame which is what I don't want; index.html should be displayed in the entire browser window without frames. How do I do this? Can Response.Redirect be modified in someway so that index.html opens up in the entire browser window?
Thanks,
Arpan
Code:
Response.Redirect("www.mysite.com/index.html")
Thanks,
Arpan