我怎么能发行 http status code of 303 See other 在ASP?
See other
使用:
<%Response.Redirect "http://stackoverflow.com"%>
发行a 302 Object moved 致客户:
Object moved
HTTP/1.1 302 Object moved Location: http://stackoverflow.com
which isn't what i'm trying to do .
如何发布303的http状态代码( 见其他 )在ASP?
尝试
<% Response.Status = "303 See Other" Response.AddHeader "Location", "http://stackoverflow.com" Response.End %>