D dappyl Mar 9, 2005 #1 I need to open new window in the response.redirect. is there any way to do it?
P Patrice Mar 9, 2005 #2 No, response.redirect is server side. you'll have to open the new window client side... Patrice
D dappyl Mar 9, 2005 #3 Can you tell me how to do it? -----Original Message----- No, response.redirect is server side. you'll have to open the new window client side... Patrice -- "dappyl" <[email protected]> a écrit dans le message de . Click to expand...
Can you tell me how to do it? -----Original Message----- No, response.redirect is server side. you'll have to open the new window client side... Patrice -- "dappyl" <[email protected]> a écrit dans le message de . Click to expand...
P Patrice Mar 9, 2005 #4 Use the target attribute of the a tag : <a href="someurel.htm" target="_blank">Hello</a> You could also use window.open... (see the HTML doc at msdn.microsoft.com). Patrice
Use the target attribute of the a tag : <a href="someurel.htm" target="_blank">Hello</a> You could also use window.open... (see the HTML doc at msdn.microsoft.com). Patrice