Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (3)

16
votes
6answers
3k 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 back button having ...
8
votes
3answers
8k 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 out how to make it ...
7
votes
1answer
1k views

A way to exclude action filters in ASP.NET MVC?

I've run into several cases in ASP.NET MVC where I wanted to apply an action filter on every action except one or two. For example, say you have an AccountController. Every action in it requires the ...
7
votes
6answers
218 views

Are there any action filters in your project you feel are a must-have?

I'm still not totally clear on why I would need to build custom action filters. Maybe a couple examples would help. Are there any action filters in your project that you feel are a must-have? Maybe ...
6
votes
3answers
298 views

UnitOfWork in Action Filter seems to be caching

I have an MVC 3 site that uses IoC (Unity), and my model is generated w/ EF4 and POCOs. I am using an action filter to commit my UnitOfWork: public class UseUnitOfWorkAttribute : ...
6
votes
3answers
1k views

How to intercept 401 from Forms Authentication in ASP.NET MVC?

I would like to generate a 401 page if the user does not have the right permission. The user requests a url and is redirected to the login page (I have deny all anonymous in web.config). The user ...
6
votes
1answer
625 views

How do I access the ModelState from 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, and in the ...
5
votes
2answers
683 views

MVC 3 compression filter causing garbled output

So, I have a custom attribute called CompressAttribute which is set up as a global filter in global.asax. It uses reflection to examine the return type of the current action method and if it is ...
5
votes
1answer
181 views

Testing ActionFilterAttributes with MSpec

I'm currently trying to grasp MSpec, mainly to learn new ways of (T/B)DD to be able to make an educated decision on which technology to use. Previously, I've mostly (read: only) used the built-in ...
5
votes
2answers
1k views

ASP.NET MVC ActionFilter parameter binding

If you have a model-bound parameter in an action method, how can you get to that parameter in an action filter? [MyActionFilter] public ActionResult Edit(Car myCar) { ... } public class ...
4
votes
1answer
647 views

OutputCache and a custom gzip compression filter

I have this custom filter for compress the output of my pages: public class EnableCompressionAttribute : ActionFilterAttribute { const CompressionMode compress = CompressionMode.Compress; ...
4
votes
1answer
129 views

In what order are filters executed in asp.net mvc

In MVC we can decorate action methods with different filters like [HttpPost] [Authorize] public ActionResult mymethod(){} HttpPost derives from MethodSelectorAttribute (probably indirectly) and the ...
4
votes
1answer
1k views

MVC 3 Dependency Injection with Ninject 2.2 + Global Action Filter

I am trying to use ASP.NET MVC 3 and Ninject 2.2 to inject a logger object into a custom ActionFilterAttribute. I am able to get this to work if I mark each controller with the custom attribute. ...
4
votes
1answer
1k views

BeginRequest-like filter in MVC 3?

I have some code in my application that I need to execute on every request, before anything else executes (even before authentication). So far I've been using the Application_BeginRequest event in my ...
4
votes
1answer
546 views

how to use automapper for a ViewModel with an IEnumerable<T> property

I'm trying to follow Jimmy Bogard's advice for automapping through an actionfilter (which works great in most cases). But what if I have a custom viewmodel with a collection property that I want ...
4
votes
2answers
1k views

ASP.NET MVC 3, Action Filters, and Autofac Dependency Injection

On ASP.NET MVC 2 I have an ActionFilterAttribute called [Transaction] that starts an NHibernate transaction before executing the action and commits or rolls it back afterward, depending on whether or ...
4
votes
3answers
2k views

How to pass parameters to a custom ActionFilter in ASP.NET MVC 2?

I'm trying to create a custom ActionFilter which operates on a set of parameters that would be passed to it from the controller. So far, my customer ActionFilter looks like this: public class ...
4
votes
1answer
184 views

What is the order of execution when dealing with .NET MVC 2 Action Filters?

Say I have: [Attribute1(Order=0)] public class Controller1 { [Attribute2] [Attribute3] public ActionResult Action1() { ... } } The attributes get executed in the following ...
3
votes
1answer
808 views

Extend AuthorizeAttribute Override AuthorizeCore or OnAuthorization

Using ASP.NET MVC I am creating a custom Authorize attribute to take care of some custom authorization logic. I have looked at a lot of examples and it is pretty straight forward but my question is ...
3
votes
1answer
95 views

MVC ActionFilter like attributes for WCF

Is there a way I can create custom method attributes for WCF that allow me to easily decorate a service method with a pre filter much like MVC uses action filters. I plan to use them for ...
3
votes
2answers
122 views

When should we implement a custom MVC ActionFilter?

Should we move logic that supposes to be in Controller (like the data to render the partial view) to ActionFilter? For example, I'm making a CMS web site. There should be a advertisement block to be ...
3
votes
2answers
364 views

Injecting dependency into CustomAttribute using Castle Windsor

In my ASP.Net MVC application I have implemented a Custom ActionFilter to Authorize users. I use CastleWindsor to provide dependency injection into all of the controllers as follows: protected ...
3
votes
1answer
244 views

Stop continuation of ASP.NET MVC ActionFilter

I have two custom ActionFilters on an action. In first of the actionfilters, I have an redirect performed if a condition is not met (classic authorization). And in another I have an redirect ...
3
votes
1answer
845 views

Unit testing an ActionFilter - correctly setting up the ActionExecutingContext

In a custom ActionFilter, I want check the attributes on the controller action that will be executed. Running through a small test application, the following works when launching the app in the ...
3
votes
1answer
331 views

ASP.NET MVC OutputCache JSONP

I cache everything that is possible on an ASP.NET MVC website and it works perfect. Now I have created an API where the calls go to Controller Actions. (http://mysite.com/topics/latest.json) The API ...
3
votes
1answer
521 views

Action Filter ActionParameters

I have an ActionFilterAttribute which I want to accept parameters through but I can't figure out pass them across. So my action filter looks like this; public class PreventAction : ...
2
votes
1answer
189 views

ControllerContext is null and BaseController.OnActionExecuting() not called when using Html.Action

We use a BaseController to cache basic authentication information before every action executes: public abstract class BaseController : Controller { protected bool IsLoggedIn { get; set; } ...
2
votes
1answer
49 views

How to have ActionFilters and OutputCaching work together?

I have an ActionFilter that does logging. I want this to log requests and parameters that come in to the server. This works fine. However when I add OutputCaching, this will only log the first request ...
2
votes
1answer
62 views

Is this code a fit candidate for an ActionFilter?

public ActionResult Index(int ehrId, int? page) { EHR ehr = ehrRepository.FindById(ehrId); if (ehr.UserName != User.Identity.Name) return View("Invalid Owner"); var physicaltests ...
2
votes
3answers
467 views

ASP.NET MVC: Action Filter to set up controller variables?

I have a scenario whereby with every page request I must check the session of the presence of a particular ID. If this is found I must grab a related object from the database and make it available to ...
2
votes
2answers
230 views

Why call base.OnActionExecuting(filterContext);?

I am just looking at some old code of mine and I have an action filter(OnActionExecuting method) and at the end of it I have base.OnActionExecuting(filterContext); Why searching around I see ...
2
votes
2answers
611 views

Route Parameter, Custom Model Binder or Action Filter?

Our ASP.NET MVC application allows an authenticated user to administer one or more "sites" linked to their account. Our Urls are highly guessible since we use the site friendly name in the URL rather ...
2
votes
3answers
273 views

Can I return an action result from an action filter?

Usually I am validating my model in the action method before committing data to the database. [HttpPost] public ActionResult MyActionMethod(MyModelType model){ if (ModelState.IsValid){ //commit ...
2
votes
1answer
38 views

How to add an ActionFilter to a non MVC project?

I have several projects written in f/x4.0 that are not MVC. No web involved. In fact, one is a Windows Service, another is a set of Libraries used for either Win Forms or Command Line processing. ...
2
votes
1answer
518 views

How can I set the ValidateAntiForgeryToken globally

Security at first. MVC best practices reccomend to add the [ValidateAntiForgeryToken] attribute to each [HttpPost] action. How can I enforce this rule in one unique point of the application?
2
votes
3answers
346 views

ASP.NET MVC - Easy way to temporarily require authorisation for whole site except one page

I am building a site with a mixture of public and member-only pages. The login system works fine as it is. However I'd like to launch a closed, invite-only preview and temporarily require visitors ...
2
votes
1answer
225 views

Can one get parameter values used in a method from within an ActionFilter?

Assume I have a controller method like this: [Audit] public JsonNetResult List(int start, int limit, string sort, string dir, string searchValue, SecurityInputModel securityData) { ... } and an ...
2
votes
1answer
183 views

How to automatically overload DELETE and PUT if they are not available by the client?

How can I detect at the startup of the application that a client doesn't support DELETE and PUT verbs and automatically overload the POST verb? On the server side, how can I redirect those overloaded ...
2
votes
1answer
1k views

MVC using Action Filter to check for parameters in URL. stop action from executing

I want to make the following: when the url doesn't have an instID, i want to redirect to the "Instelling" action in this controller, every method needs the instID. ...
2
votes
2answers
70 views

Is it possible to make data from an Action Method available in an Action Filter?

The Background: We are supplied with html files - 'wrappers' - from our client, into which we need to inject the content that we produce. They have different wrappers for different pages and we have ...
2
votes
1answer
100 views

ASP.NET ActionFilters and inheritance

All my controllers inherit from a BaseController that has an ActionFilter attribute: [AnalyticsData] public class BaseController : Controller {} public class AccountController : BaseController {} ...
2
votes
1answer
230 views

Authorize filters vs Action Filters

i m using .NET mvc2 for my application. i want some custom authorization on my actions. i have googled a bit and there seems to be two options available. Impelement logic in onActionExecuting in ...
2
votes
4answers
4k views

How do the httppost, httpput etc attributes in ASP.NET MVC 2 work?

In ASP.NET MVC 2, a couple of new action filter attributes were introduced, as "shorthand" for attributes in ASP.NET MVC 1; for example, applying the HttpPostAttribute does the same thing as applying ...
2
votes
4answers
2k views

Redirect loop with SSL action filter in ASP.NET MVC

I am using an ActionFilter (see below) to detect whether or not 1. the current controller/action requires SSL and 2. SSL is currently being used, and redirect accordingly. This works fine locally ...
2
votes
1answer
528 views

Catching ASP.Net MVC Principle Permission attribute exceptions

I would like to secure my MVC controller actions using... [PrincipalPermission(SecurityAction.Demand, Role="Administrator")] However, if the user is not in this role then a SecurityException ...
2
votes
1answer
592 views

Flushing and Compression filters (ASP.NET MVC)

We have quite common code which worked fine: public class CompressionFilterAttribute : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext ...
2
votes
1answer
347 views

Using Spring.Net to inject dependencies into ASP.NET MVC ActionFilters

I'm using MvcContrib to do my Spring.Net ASP.Net MVC controller dependency injection. My dependencies are not being injected into my CustomAttribute action filter. How to I get my dependencies into ...
2
votes
1answer
252 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 action X. (There are ...
2
votes
2answers
895 views

asp.net mvc - Route for string or int (i.e. /type/23 or /type/hats)

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 like this: public class ...
2
votes
2answers
3k 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 view data. For that ...

1 2 3