Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
552 views

Injecting dependencies into ASP.NET MVC 3 action filters. What's wrong with this approach?

Here's the setup. Say I have some action filter that needs an instance of a service: public interface IMyService { void DoSomething(); } public class MyService : IMyService { public void ...
4
votes
2answers
875 views

ASP.NET MVC3 + ActionFilterAttribute + Injection?

Hey there, I've succesfull been able to use property injection in my FilterAttribute, however I'm wondering whether its possible to move it into the constructor instead? My current code: // ...
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 ...
4
votes
1answer
1k views

Ninject 2 Property Injection for ActionFilterAttribute not working

I have a method attribute which expects several properties to be injected by Ninject 2, but userSession and jobRepository are coming up as null: [AttributeUsage(AttributeTargets.Method, AllowMultiple ...
3
votes
1answer
341 views

ASP.NET MVC - Filter which action to invoke based on the query string

i was wondering if it was possible to filter which action is invoked based on a paramater in the query string. For example, i have a grid with a radio button column to select an item in the grid. ...
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
2answers
1k views

ActionFilterAttribute: Where is the 'Cancel' property?

Whatever happened to the Cancel property on the ActionExecutingContext? How would one abort a RenderAction when using an ActionFilterAttribute or is there another way to skin this cat? public ...
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 : ...
3
votes
1answer
395 views

ASP.Net MVC ignoring filter order

Just wondering if anyone has any idea of why my filter order is being ignored... [AcceptVerbs(HttpVerbs.Get)] [Compress(Order = 1)] [EnhancedOutputCache(Order = 2, Duration = 5, VaryByParam = "true", ...
2
votes
1answer
31 views

ActionFilter does not execute with cached output

I am using the OutputCache attribute to cache my home page content [OutputCache(CacheProfile = "Default")] public ActionResult Index() { ..... } I also have a custom global attribute set-up ...
2
votes
5answers
178 views

Custom ASP.NET MVC ActionFilterAttribute - hooks never get called

Hi I`m trying to do something that seems kinda easy, and is documented that way but for some reason its not going that easy. Basiclly I wrote something like this: public class CacheControllAttribute ...
2
votes
0answers
188 views

Use a IRouteConstraint or ActionFilterAttribute when validating session data against route data

I've been implementing a RouteConstraint recently whos responsibility is to Match a custom route value against some model data that is in the session. What I've found is that the session is null for ...
2
votes
2answers
254 views

Implementing object-level security with attributes in ASP.NET MVC

Is it possible to implement object-level security with a custom ActionFilterAttribute? I read Branislav Abadjimarinov's answer to Get permission from Authorize Attribute? and started thinking about ...
2
votes
2answers
309 views

Inject selected view path as HTML comment to start and end of action's output

I'm currently putting together a multi-tenancy web app using MVC 3. At least 30 different Web sites will share a common codebase, and while also sharing similar under-the-hood functionality, they are ...
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
373 views

Why does my ActionFilterAttribute redirect after the action code is run?

I'm trying to use a ActionFilterAttribute to redirect users that are not logged in. Although my redirect is working it redirects but it calls all of my ActionResult code first. Any ideas as to why it ...
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
4answers
1k views

ASP.NET MVC - ActionFilterAttribute to validate POST data

Actually I have an application that is using a WebService to retrieve some clients information. So I was validating the login information inside my ActionResult like: [AcceptVerbs(HttpVerbs.Post)] ...
1
vote
1answer
36 views

ActionFilterAttribute is getting called for all actions

Maybe I have misunderstood the point of the ActionFilterAttribute, but what I have now is the following: public class MyCustomAttribute : ActionFilterAttribute { public override void ...
1
vote
1answer
491 views

ASP.NET MVC Global or BaseController ActionFilter to Execute Before OnAuthorization

In my application (ASP.NET MVC 3) I have a BaseController class that all my Controllers inherit and in that BaseController I have overridden the OnActionExecuting method to check to ensure a Session ...
1
vote
2answers
352 views

Earlier ActionFilterAttribute execution in base controller - MVC2

I have the following setup. When an action is executed in GuestDetailsController, how can I have[LoadThemeInfo] run prior to [RequireCheckoutAvailability] without having to specify orders on the child ...
1
vote
1answer
153 views

c# trigger pre and post method calls like mvc actionfilters

Is there a way to get the functionality of action filters in asp.net mvc where you can call and manipulate action parameters pre the method executing and post method call to update/view the return ...
1
vote
2answers
599 views

ASP.NET MVC action filters: Setting the filterContext.Result in a filter prevents other filters from being executed?

I currently have 2 filters, Auth and Redirect that do the following: Filter Auth, who implements IAuthorizationFilter and ActionFilter, checks for user login and authorization, and if that fails sets ...
1
vote
1answer
738 views

ASP.Net MVC Custom Error handling via Action Filter Attributes

I am trying to implement Custom Error handling via Action Filter Attributes. My code is as follows: [HandleError (Order = 2)] [HandleError (Order = 1, ExceptionType = typeof(NullReferenceException), ...
1
vote
1answer
938 views

ASP.Net MVC Error handling using Action Filters Attributes

I am trying to implement Error handling using Action Filters Attributes as per ScottGu's blog My code is as follows: [HandleError] [HandleError(ExceptionType = typeof(NullReferenceException), View = ...
1
vote
2answers
569 views

Detecting redirect in IActionFilter.OnActionExecuted reliably

I have an IActionFilter that does something in OnActionExecuted, however I don't want to perform this action when the controller result performs a redirect. My initial thought was to check the type ...
0
votes
1answer
53 views

How do I unit test a custom ActionFilter in ASP.Net MVC

So I'm creating a custom ActionFilter that's based mostly on this project http://www.codeproject.com/KB/aspnet/aspnet_mvc_restapi.aspx. I want a custom action filter that uses the http accept headers ...
0
votes
1answer
100 views

Action Filter Never Being Hit In ASP.NET MVC 3

I have no idea why my action is not being hit. This controller is under an "Area" called api. $.ajax({ url: defaults.url + (defaults.url.indexOf('?') > 0 ? '&' : '?') + 'r=' + ...
0
votes
1answer
49 views

MVC How to return view in ActionFilterAttribute like ActionResult?

Is it even possible to return a view from an ActionFilterAttribute? Right now i just have it throw an error and in the OnException in the base controller reroutes to an error page. Would liek to show ...
0
votes
1answer
54 views

ASP.NET MVC 3: Can I pass a modelbound object to a FilterAttribute?

I have a controller method with a custom FilterAttribute on it... [ActivityHistory] public ActionResult Index(Vehicle vehicle, string componentName) { return PartialView("_Description"); } The ...
0
votes
1answer
163 views

mvc role based permission using actionfilterattribute

So I'm setting up my permission for an mvc website. And I'm doing a role based permission, having actions in a controller would require different Roles depending on the purpose of the action. I know ...
0
votes
1answer
137 views

ActionMethodSelectorAttribute + AllowHtml

I have an ActionMethodSelectorAttribute which i have the following line in: var req = controllerContext.RequestContext.HttpContext.Request.Form.AllKeys.Any() ? ...
0
votes
1answer
245 views

MVC Get ActionFilterAttribute value in Base Controller OnActionExecuting

If i set an Attribute on an action in a controller that inherits BaseController, is it possible to get that value in some BaseController function? public class BaseController : Controller { ...
0
votes
1answer
125 views

ASP.net MVC Global Filtering

This is sort of a broad question, but one I am curious about. What are some examples of uses for MVC Global filters? I.E. public static void RegisterGlobalFilters(GlobalFilterCollection filters) ...
0
votes
1answer
170 views

ASP.NET MVC 3 FilterAttribute - setting a variable that will be accessible in the Controller

In a FilterAttribute I am making in MVC3, I want to set a variable that will be accessible inside my Controller. How can I do this? Is it possible? Thank you.
0
votes
1answer
512 views

ASP.NET MVC3 ActionFilterAttribute Priority/Selection - Bizarre?

I just noticed a strange behavior with ActionFilterAttribute priority in MVC3. It turns out that if both a Controller and an Action are decorated with the same ActionFilterAttribute with ...
0
votes
2answers
167 views

Enforce security check in ASP.NET MVC?

I am implementing a collaborative web gallery, and I have a few roles for each user: Admin DeleteImage DeleteOwnImage etc.. For any controller-action, we can apply [Authorize] tag to them plus ...
0
votes
1answer
279 views

ASP.NET MVC: ActionFilterAttribute not setting ViewData

I've written the following ActionFilterAttribute Imports System.Web.Mvc Namespace Mvc.Filters Public Class StopWatchFilter : Inherits ActionFilterAttribute Private tStart As DateTime ...
0
votes
1answer
210 views

Hide/Show content using ActionFilterAttribute/AuthorizeAttribute

I'm using MVC 2 with futures, and I'm trying to hide/show content based on role. Is there a way with ActionFilterAttribute or AuthorizeAttribute if the authentication fails to not show the controller ...
0
votes
2answers
190 views

Localize DisplayNameAttributes in ActionFilter?

Is it possible to access the DisplayNameAttributes that are used on my ViewData.Model so I can Localize them before sending them to the view? Something like this: Public Void ...
0
votes
1answer
589 views

ViewData in ActionFilterAttribute - Object reference not set to an instance of an object

I've been trying to load masterpage content from database (based on a "TargetCode" in the querystring), using ActionFilterAttribute. However, I'm having problem setting the ViewData to the data ...