how do make a pop-up in sub ASP.net sub ?

  • Thread starter Thread starter THY
  • Start date Start date
T

THY

Hi,

is it possible to make a pop-up in ASP.Net sub ?

I dont want to use javascript or vbscript, so I wondering is that posible ?

thanks
 
You must do this with javascript or vbscript unless you do it with a plain
HTML link such as this:
<a href='mypage.aspx' target='_new'>click here</a>
 
Back
Top