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
Mark Rae - 16 Jun 2007 13:29 GMT
> 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...

Signature
http://www.markrae.net
bruce barker - 17 Jun 2007 00:13 GMT
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)
> 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