Move from a frames page to aspx page

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
 
G

Guest

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';
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top