when click hyperlink the window will split two parts & result will display in secound part

  • Thread starter Thread starter nani
  • Start date Start date
N

nani

Hi friends
I am creating one web application in that i take one hyperlink
control.when i click hyperlink control.how to split the page in two
parts and display the result in that secound part
If the result is not there again in orginal format How to create it
plz tell
 
I am creating one web application in that i take one hyperlink
control.when i click hyperlink control.how to split the page in two
parts and display the result in that secound part
If the result is not there again in orginal format How to create it

It's a little difficult without knowing exactly what the hyperlink does or
what the "result" is, but one possible way would be to add an <asp:Panel>
tag and set its Visible property to false initially. Place the control(s)
for the "result" in the <asp:Panel> tag. When the hyperlink posts back, set
the Visible property of the <asp:Panel> tag to true if the "result" is
there...
 
the second part should be an iframe. set the hyperlink target to the
iframe name. you can use a client onclick event to create, or make the
iframe visible.

-- bruce (sqlwork.com)
 
Back
Top