Move from a frames page to aspx page

  • Thread starter Thread starter sf2005
  • Start date Start date
S

sf2005

VS .Net 2003 / Visual Basic

I have this html frames page. The header and main frames show aspx pages.
In the header, if I have a button to get the user back to the main menu, how
do I close the current browser window and have the main menu appear in
another. Right now with just doing a server.transfer ("mainmenu.aspx") or a
response.redirect("mainmenu.aspx) the mainmenu.aspx show up in the base
target (main frame), which is not what I want.

Some help please.
Thank you
 
i didnt understand, you have a frame, and inside a aspx page, and you want to
redirect only the page that is inside the frame???

if it is so, i only know from javascript
document.frames(nameoftheframe).location = 'newlocation';
 
Back
Top