Opening new WebForm

V

Vycka

Hello,

I have a web-application. After pressing the button special form should be
opened in a new browser window.
How can I achieve that?
Please, give a simple example.

Thank you

VS.NET C#
 
C

Christopher Kimbell

If the button is a standard html button, you can use javascript to open
windows.
Look up the window.open method on MSDN.

Example from MSDN:
window.open("Sample.htm",null,
"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");Chris

PS: This newsgroup covers winforms, not webforms.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top