This topic is locked
[SOLVED]

  target=_Blanck in respons.redirect

7/22/2010 7:03:48 AM
ASPRunnerPro General questions
E
erdinoxyz author

Hi

I like write codes after deleted events.

...

For example;

response.redirect "Sales_add.asp" target=_blanc and reload "Sales_add.asp"

But, to be error.

What true codes?
Thanks.

A
ann 7/22/2010

Hi,
here is the correct code of redirection:

flush_output

response.write("<script> window.open('Sales_add.asp','_blank');</script>")



and the code for reload:

flush_output

response.write("<script> window.location.reload();</script>")
E
erdinoxyz author 7/23/2010



Hi,
here is the correct code of redirection:

flush_output

response.write("<script> window.open('Sales_add.asp','_blank');</script>")



and the code for reload:

flush_output

response.write("<script> window.location.reload();</script>")




This codes good works

Thanks