Frames

G

Guest

Hello,

Am very new to ASP.Net and HTML.

I have a frame defination html file with 2 frames:
1. frSearch
The source is: WebReceiverSearch.aspx
2. frResults
The source is: WebResults.aspx

I want to accept a client code in the search frame (ie:
WebReceiverSearch.aspx) and populate the results in (ie:
WebReceiverResults.aspx).

I currently use a cmd button in the search panel and redirect it to the
results page, but that comes into the same frame as WebReceiverSearch.aspx

I want to be able to open the WebReceiverResults.aspx in the results frame.
How can i do that?

Thanks with regards
Ishan
 
S

Steve Richter

Ishan said:
Hello,

Am very new to ASP.Net and HTML.

I have a frame defination html file with 2 frames:
1. frSearch
The source is: WebReceiverSearch.aspx
2. frResults
The source is: WebResults.aspx

I want to accept a client code in the search frame (ie:
WebReceiverSearch.aspx) and populate the results in (ie:
WebReceiverResults.aspx).

I currently use a cmd button in the search panel and redirect it to the
results page, but that comes into the same frame as WebReceiverSearch.aspx

I want to be able to open the WebReceiverResults.aspx in the results frame.
How can i do that?

Thanks with regards
Ishan

Well, you could do a response.redirect in the search.aspx document
which uses querystring to repost the parent document, which in turns
loads a new document in each child frame.

also, a document in an iframe can refer to its parent document. so the
iframe child could run javascript in the parent. That javascript could
click an anchor with a target that is the results frame.

-Steve
 

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

Similar Threads

Frames 1
asp:menu across 2 frames 1
frames in ASP.NET 1
About frames in asp.net 1
Target Frames 3
kill HTML Frames 1
Are frames "out" these days and going forward? 3
communication with Flash movie, how? 2

Top