有谁知道如何使用 http 状态代码 303 (SeeOther) 在 ASP.NET 中重定向当前请求。
代码片段非常受欢迎!
你应该可以这样做:
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Status = "303 See Other";
HttpContext.Current.Response.AddHeader("Location", newLocation);
HttpContext.Current.Response.End();
这是作为扩展方法的.NetCore实现。
public static class ControllerExtensions
{
public static ActionResult SeeOther(this Controller controller, string location)
{
controller.Response.Headers.Add("Location", location);
return new StatusCodeResult(303);
}
}
来自控制器的用法: return this.SeeOther("/resource-endpoint");