我尝试了两种方式:反应(Redirect())无所作为,并在基地主计长内部提出新的方法,以恢复行动,并返回“Redirect ToAction(RedirectToAction)(两者兼有)。
我怎么能够从“行动执行”方法转向?
我尝试了两种方式:反应(Redirect())无所作为,并在基地主计长内部提出新的方法,以恢复行动,并返回“Redirect ToAction(RedirectToAction)(两者兼有)。
我怎么能够从“行动执行”方法转向?
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
...
if (needToRedirect)
{
...
filterContext.Result = new RedirectResult(url);
return;
}
...
}
也可以这样做:
filterContext.Result = new RedirectToRouteResult(
new RouteValueDictionary
{
{"controller", "Home"},
{"action", "Index"}
}
);
建立单独的班级,
public class RedirectingAction : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext context)
{
base.OnActionExecuting(context);
if (CheckUrCondition)
{
context.Result = new RedirectToRouteResult(new RouteValueDictionary(new
{
controller = "Home",
action = "Index"
}));
}
}
}
Then, When you create a controller, call this annotation as
[RedirectingAction]
public class TestController : Controller
{
public ActionResult Index()
{
return View();
}
}
如果再定向控制器继承同一条<代码> 底仓代码> 如果我们凌驾于<>关于行动执行<>的守则>方法之上,则会造成休养假。 假设我们将其转用于记录账户控制员的行动,则日志行动将称作<>关于行动执行编码>方法的代码,并再次转向同一日志行动。
...... 因此,我们应当在<关于行动执行编码>的代码上进行核对,以检查请求是否由同一控制人提出,如果这样做的话,不会再次将请求重新定位为标志。 这部法律是:
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
try
{
// some condition ...
}
catch
{
if (filterContext.Controller.GetType() != typeof(AccountController))
{
filterContext.Result = new RedirectToRouteResult(new RouteValueDictionary {
{ "controller", "Account" },
{ "action", "Login" }
});
}
}
}
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...
Since I cannot order my dictionary, what is the best way of going about taking key value pairs and also maintaing an index?
Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...