because I use Redirect I have:
<% @ language = "vbscript"%>
<% Response.Buffer = true %>
in the top of my page but then he doesn't show me the messagebox
yea -- another member was having this problem last week or something. Here's why it doesn't show the message box:
All server side code is interpreted BEFORE any client side code, which means that even though the line is encountered first, it writes client side code, which will not execute until all the server side code is done -- and you will be redirected by then --
Best bet will be to use client side redirection to achieve the wanted results -- you can just write the code like this:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.