从 global.asax 中的 Application_BeginRequest 重定向到操作
在我的网络应用程序中,我正在验证来自 glabal.asax 的网址。我想验证 url,并且需要重定向到某个操作(如果需要)。我正在使用 Application_BeginRequest 来捕获请求事件。
protected void Application_BeginRequest(object sender, EventArgs e)
{
// If the product is not registered then
// redirect the user to product registraion page.
if (Application[ApplicationVarInfo.ProductNotRegistered] != null)
{
//HOW TO REDIRECT TO ACTION (action=register,controller=product)
}
}
或者是否有其他方法可以在 mvc 中获取请求时验证每个 url,并在需要时重定向到操作
In my web application I am validating the url from glabal.asax . I want to validate the url and need to redirect to an action if needed. I am using Application_BeginRequest to catch the request event.
protected void Application_BeginRequest(object sender, EventArgs e)
{
// If the product is not registered then
// redirect the user to product registraion page.
if (Application[ApplicationVarInfo.ProductNotRegistered] != null)
{
//HOW TO REDIRECT TO ACTION (action=register,controller=product)
}
}
Or is there any other way to validate each url while getting requests in mvc and redirect to an action if needed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
以上所有内容都不起作用,您将处于执行方法
Application_BeginRequest
的循环中。你需要使用
All above will not work you will be in the loop of executing the method
Application_BeginRequest
.You need to use
使用以下代码进行重定向
“默认”是路由名称。如果您想重定向到任何操作,只需创建一个路由并使用该路由名称即可。
Use the below code for redirection
"Default" is route name. If you want to redirect to any action,just create a route and use that route name .
除了已经提到的方法之外。另一种方法是使用 URLHelper,我在发生错误时使用过,用户应该重定向到登录页面:
Besides the ways mentioned already. Another way is using URLHelper which I used in a scenario once error happend and User should be redirected to the Login page :
试试这个:
Try this:
我这样做:
这样你就可以包装传入的请求上下文并将其重定向到其他地方,而不需要重定向客户端。因此重定向不会触发 global.asax 中的另一个 BeginRequest。
I do it like this:
this way you wrap the incoming request context and redirect it to somewhere else without redirecting the client. So the redirect won't trigger another BeginRequest in the global.asax.
我有一个旧的 Web 表单应用程序,必须转换为 MVC 5,其中一项要求是支持可能的 {old_form}.aspx 链接。在 Global.asax Application_BeginRequest 中,我设置了一个 switch 语句来处理旧页面以重定向到新页面,并避免可能出现不需要的循环到主/默认路由检查请求的原始 URL 中的“.aspx”。
I had an old web forms application I had to convert to MVC 5 and one of the requirements was supporting possible {old_form}.aspx links. In Global.asax Application_BeginRequest I set up a switch statement to handle old pages to redirect to the new ones and to avoid the possible undesired looping to the home/default route check for ".aspx" in the request's raw URL.
就我而言,我不喜欢使用 Web.config。然后我在 Global.asax 文件中创建了上面的代码:
这是我的 ErrorController.cs
这是我的基于 mason 类的 ErrorLogService.cs
In my case, i prefer not use Web.config. Then i created code above in Global.asax file:
And thtat is my ErrorController.cs
And that is my ErrorLogService.cs based on mason class
您可以尝试使用以下方法:
Context.Response.Redirect();
不确定。
You can try with this:
Context.Response.Redirect();
Nt sure.