open new window with ASP.NET

  • Thread starter Thread starter Grey
  • Start date Start date
G

Grey

Is there any function in ASP.NET that I can start new a ASP.NET page with new window, like Javascript's "window.open('URL');". I want to use server control to do that ..

Million thanks..
 
No, you should still use Javascript's window.open syntax because this is a client side operation and javascript is still the king of the client side.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net


Is there any function in ASP.NET that I can start new a ASP.NET page with new window, like Javascript's "window.open('URL');". I want to use server control to do that ..

Million thanks..
 
if so, The URL in the window.open is dynamically generated in ASP.NET. How to do that??

--
Best Regards,

Eric Yum
No, you should still use Javascript's window.open syntax because this is a client side operation and javascript is still the king of the client side.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net


Is there any function in ASP.NET that I can start new a ASP.NET page with new window, like Javascript's "window.open('URL');". I want to use server control to do that ..

Million thanks..
 
Back
Top