anup
anup

Reputation: 21

how to open the one page to the in new browser windows in asp.net coding

how to open the one page to the in new browser windows in coding?

Upvotes: 0

Views: 121

Answers (1)

Adeel
Adeel

Reputation: 19228

you can do this with the help of javascript function window.open

  window.open ("http://www.example.com","yourwindow");  

Upvotes: 1

Related Questions