Frame Set Flow

J

Jay Villa

I have a startup page with a frameset
<framset border="1" frameborder="1" framespacing="0" cols="30%,70%">
<frame name="left frame" src="WebForm1.aspx">
<frame name="right frame" src="WebForm2.aspx">
</frameset>

In WebForm1.aspx(left frame page) i've two links Search and Edit
<html>
<head>
<title> web form1</title>
</head>
<p> <asp:HyperLink id="hpLinkSearch"
runat="server">Search</asp:HyperLink></p>
<p> <asp:HyperLink id="hpEdit" runat="server">Edit</asp:HyperLink></p>
</html>

On clicking the url of Search I want to display the information on
RightFrame ... How can achieve this.?

Thanks
Jay
 
S

sreejith.ram

simplest method ..

1) in hpLinkSearch_Click , build the search query string and assign to
a session variable
2) Reload page in RightFrame.Attributes("src") = "WebForm2.aspx"
3) in "WebForm2.aspx" execute the search query in session and display
the results
 

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

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,236
Members
46,822
Latest member
israfaceZa

Latest Threads

Top