window.open() in HTTP Response/Request?

  • Thread starter Thread starter Martin Feuersteiner
  • Start date Start date
M

Martin Feuersteiner

Hi

Sorry, I'm not good in this.
Is there any way to open a new window with code something like the one
below?

Response.Write("_blank")
Response.Write("window.open()")

Thanks for your expertise!
Have a good day!

Martin
 
Hi

Thanks for your replies.

I had this solution before but the architcture (not functionality) doesn't
work for me.
Is there any way I can do it the way I asked for, no matter how complicated?

I mean there must be a solution to do this using Response/Request?

Thanks for your efforts!

Martin
 
What is it in your architecture that is preventing this solution from
working? Response.Redirect is a server side action that instructs the
client to send another GET request to the server. Opening a new window is a
client side action and therefore cannot be controlled from the server.
 
Thank you to everyone for replying. It's solved. See next post about hta.
 
Back
Top