Как я могу выдать http код состояния 303 See other в ASP?
See other
Использование:
<%Response.Redirect "http://stackoverflow.com"%>
выдает клиенту 302 Object moved:
Object moved
HTTP/1.1 302 Object moved Location: http://stackoverflow.com
это не то, что я пытаюсь сделать .
Как я могу выдать код состояния http 303 ( См. Другие ) в ASP?
Попробуйте
<% Response.Status = "303 See Other" Response.AddHeader "Location", "http://stackoverflow.com" Response.End %>