open new browser window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a webpage with a datagrid on it with a button for one of the columns for each row displayed, currently when you click on the button the I use response.redirect to navigate to the next page I want to show. Is it possible to open a new browser window and display this page instead

Thanks
Kent
 
Is it possible to open a new browser window and display this page instead?

Yes, but to do so, use client side JavaScript, e.g. window.open();

Peter
 
Back
Top