About pup up Web form using C#

  • Thread starter Thread starter Yiu
  • Start date Start date
Y

Yiu

i am the new guy for C#.
How to call other web form but the old web form will not close?
is it possible use Response.Redirect or Server.Transfer to do it?
 
no,

You have to do it on the client site, you can use a Hyperlink and set the
Target property to "_blank"

Hope this help,
 
In the designer:
1) Right click on the hyperlink in question.
2) Click "Properties"
3) In the properties pane: set the "NavigateUrl" property to where you
want the link to go to
4) In the properties pane: set the "Target" property to "_blank"
 
Back
Top