ASP.NET MVC Global.asax.cs文件中服务器端跳转
ASP.NETMVCGlobal.asax.cs文件中,想用服务器端跳转,但是Server.Transfer不可以。protectedvoidSession_Start(...
ASP.NET MVC Global.asax.cs文件中,想用服务器端跳转,但是Server.Transfer不可以。
protected void Session_Start(object sender, EventArgs e){} 这个方法中需要用什么来实现服务器端跳转?如何跳转到指定的Action? 展开
protected void Session_Start(object sender, EventArgs e){} 这个方法中需要用什么来实现服务器端跳转?如何跳转到指定的Action? 展开
展开全部
Server.Transfer 什么时候可以用 是看页面生命周期的。
如果做控制,个人建议做一个基类Controller
重写
/// <summary>
/// Action执行之前
/// </summary>
///
<param name="filterContext"></param>
protected override void
OnActionExecuting(ActionExecutingContext
filterContext)
{
filterContext.RouteData.Values["controller"];
filterContext.RouteData.Values["action"]);
}
这离可以判断出访问具体的控制器和action
如果做控制,个人建议做一个基类Controller
重写
/// <summary>
/// Action执行之前
/// </summary>
///
<param name="filterContext"></param>
protected override void
OnActionExecuting(ActionExecutingContext
filterContext)
{
filterContext.RouteData.Values["controller"];
filterContext.RouteData.Values["action"]);
}
这离可以判断出访问具体的控制器和action
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询