opening a new window

  • Thread starter Thread starter khawar
  • Start date Start date
K

khawar

hi,,, in my *.cs file, when the submit button is clicked
i want to have a page open in a new window open.
can someone tell me the code in C# please, no javascript
thanks
 
sorry, can only be done in javascript. C# can render the javascript though.


-- bruce (sqlwork.com)
 
sounds like it's a web app. To open a new window you need client-side script
JS or VB.
window.open(URL, name [, features])
 
Back
Top