Is it possible to open a new browser not using javascript

G

Guest

There are some methods for redirect to another aspx page.
response.redirect()
server.transfer()

Is it possible to open a new browser window which is not using javascript.

Thanks!
 
C

Cowboy \(Gregory A. Beamer\)

The browser has to be opened client side, which requires client side code
(like JavaScript).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
Think outside the box!
*************************************************
 
J

John Timney \(MVP\)

You can open one using vbscript. You cannot open a window using server side
code if thats what your trying to find out.

Regards

John Timney (MVP)
 
M

master_programmer

<a href="page.html" target="_blank">click</a>

The browser has to be opened client side, which requires client side code
(like JavaScript).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
Think outside the box!
*************************************************
 

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