Link Control

  • Thread starter Thread starter Krishnan
  • Start date Start date
K

Krishnan

Hi,
Could anybody tell me how to make a link control open a new window when
clicked?

Thanks
Krishnan
 
Hi Krishnan,

If you want to link to another page, say you want link to b.aspx from
a.aspx, then you need not use a Link control. You can use a Hyperlink
control and set the "target" property to _blank.

For a link control, if you note, a postback happens. This means, you have to
set the <form> target property to "_blank".
 
Back
Top