Opening Links In Other Frames In ASP 2.0

SphyNxXx

Member
Joined
Nov 14, 2006
Messages
7
Programming Experience
1-3
I need some help with this...basically, I have a site with 3 frames. There is a top "header" frame that has a text box and a button for a search function. What I need to do is pass the text in the textbox to another page to process the search. The text is passed through a querystring. However, the new page needs to open in a different frame. Ive always used Request.Redirect(url) in the VB code behind the onclick events of the button. Can somebody help me with this? Thanks!
 
Frames is a client-side feature and isn't integrated in ASP, but each page in a frameset can display a ASP.Net generated page. Navigating the frames can be done with Javascript or by setting the client-side property Target for anchors. A similar ASP.Net feature is MasterPages.
Here is an article about ASP.Net and frames.
Check this ASP.NET Master Pages Overview
 
Back
Top