作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 CustomMvcRouterHandler,基于某些逻辑,我只想将用户重定向到 CustomHandler 中的另一个 Url。
public class CustomMvcRouterHandler : IRouteHandler
{
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
if (requestContext.HttpContext.Request.IsAuthenticated)
{
if (logic is true)
{
string OrginalUrl = "/Home/AboutUs";
// redirect Url = "/Home/CompanyProfile";
return new MvcHandler(requestContext);
}
}
return new MvcHandler(requestContext);
}
}
如何将用户从 CustomRouterHandler 重定向到“Home/CompanyProfile”?
最佳答案
您可以使用底层 ASP.NET 响应对象将用户重定向到另一个 URL。
requestContext.Response.Redirect("/Home/CompanyProfile");
requestContext.Response.End();
它将向浏览器发送重定向响应并结束 HTTP 请求处理。
关于c# - 如何将用户从 MVC 自定义路由器处理程序重定向到另一个 Url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17708202/
我是一名优秀的程序员,十分优秀!