I am using the following code to redirect the browser if the users machine does not have a specific cookie, the page it is redirecting to DOES exist and is in the correct place but for some unknown reason I get a 404 page not found error. Can anyone shed some light on this?
[tt]
<%
currentUser = request.Cookies("userlogcookie"("User"
if len(currentUser) = 0 then
response.redirect("../hompage/nocookie.asp"
else
blah blah blah
end if
%>
[/tt]
[tt]
<%
currentUser = request.Cookies("userlogcookie"("User"
if len(currentUser) = 0 then
response.redirect("../hompage/nocookie.asp"
else
blah blah blah
end if
%>
[/tt]