How can i issue an http status code of 303 See other in ASP?
Using:
<%Response.Redirect "http://stackoverflow.com"%>
issues a 302 Object moved to the client:
HTTP/1.1 302 Object moved
Location: http://stackoverflow.com
which isn’t what i’m trying to do.
How can i issue an http status code of 303 (See Other) in ASP?
Try