0
votes
1answer
37 views
Inject referrer action via action filter?
Is there a way to inject the referrer action from an action filter?
Lets say I have a view that comes from action X. In dies view I call action Y and I want to redirect again to a …
0
votes
2answers
81 views
.NET MVC Write Cookie from ActionFilter
Hi,
I built an ActionFilter to host a page hit logger on my MVC site and have the need to save some values into cookie. I've used the following code to write the cookie:
public c …
1
vote
2answers
130 views
Redirecting to specified controller and action in asp.net mvc 2 action filter
I have written an action filter which detects a new session and attempts to redirect the user to a page informing them that this has happened. The only problem is I can not figure …
6
votes
6answers
482 views
What methods are available to stop multiple postbacks of a form in ASP.NET MVC?
A common web problem is where a user clicks the submit button of a form multiple times so the server processes the form more than once. This can also happen when a user hits the b …
0
votes
2answers
120 views
Prevent Caching of Attributes in ASP.NET MVC, force Attribute Execution every time an Action is Executed
According to various articles (e.g. here and here) attribute results on ASP.NET MVC Actions may be cached and not executed again when a controller action is called.
That behavior …
0
votes
1answer
337 views
Check User.Identity.IsAuthenticated in ActionFilter right after login
I'm basically using the AccountController from the ASP.NET MVC samples. It uses FormsAuthentication to handle the user login. Just to be sure, here is the code to handle user login …
0
votes
1answer
56 views
ASP.NET MVC: Not executing actionfilters on redirect and throw HttpException
Hi,
I've created an OnActionExecuted filter to populate some viewmodel attributes with data from db (I'm not using ViewData["somekey"], preferring many ViewModels descending from …
2
votes
2answers
172 views
asp.net mvc - Route for string or int (i.e. /type/23 or /type/hats)
Hi guys
I have the following case where I want to accept the following routs
'/type/view/23' or '/type/view/hats'
where 23 is the Id for hats.
The controller looks something …
0
votes
2answers
97 views
ActionFilter to set a controller.action parameter but param req on ActionLink in View
We have a [UserNameFilter] ActionFilterAtrribute which populates the controller actions username parameter. This works nicely. However, when I use the Html.ActionLink helper string …
1
vote
2answers
129 views
How do I UnitTest a custom ActionFilter?
I've been trying to find some straightforward information on this, but I haven't been able to - either what I've found has been to vague for me to understand what's going on, or to …
1
vote
2answers
99 views
Why do none of my ActionFilters run?
I asked a question earlier today about ActionFilters in ASP.Net MVC. It turned out my problem was really that my ActionFilter is not even running. Among other things I read this ar …
3
votes
1answer
108 views
How do I access the ModelState form an ActionFilter?
I'm building an ActionFilter to reuse some code for a simple spam block - basically what I do is that I have a Html Helper method that renders an input textbox and a hidden input, …
0
votes
2answers
336 views
Calling FilterAttribute’s OnActionExecuting before BaseController’s OnActionExecuting
I have a BaseController in which I put in some data in the ViewData collection by overriding OnActionExecuting.
Now i have an Action in a ChildController that doesn't need that vi …
0
votes
2answers
47 views
TranslateAttribute for my asp.net-mvc site
In my current project I have a custom ViewData that has (amongst others) the following properties:
CustomViewData
+ IList <Language> siteLangauges
+ Language CurrentLangua …
1
vote
3answers
164 views
Which redirect has precedence - the one in controller action or in ActionFilter’s OnActionExecuted?
Looks like I'm about to do something weird again...
The situation:
public ExperimentAttribute
{
public override void OnActionExecuted (ActionExecutingContext filterContext)
…
