Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Asp.net mvc - Accessing view Model from a custom Action filter

I am trying to access the Model data passed to the view in the action filter OnActionExecuted. Does anyone know if this is possible? I am trying to do something like this: public override void ...
2
votes
1answer
1k views

ASP.NET MVC 3 Custom Action Filter - How to add incoming model to TempData?

I'm trying to build a custom action filter which grabs the incoming model out of the filter context, adds it to tempdata, then does "other stuff". My action method looks like this: [HttpPost] ...
2
votes
3answers
419 views

OutputCache and recording unique views?

Image i have a view that is cached with the OutputCache attribute but i still need to increment a counter that records that the page has been viewed, how could i do it? I thought about creating my ...
1
vote
1answer
52 views

How to pass dynamic variable to Action Filter in ASP.NET MVC

I would like to use a variable to pass a dynamic value to my action filter. I thought it would be something like this: [MessageActionFilter(message = "User is updating item: " & id)] public ...
1
vote
2answers
3k views

ASP.NET MVC - CustomeAuthorize filter action using an external website for loggin in the user

I have a CustomeAuthorize action filter that forwards the user to signin page if user is not authenticated. I apply this filter to actions or controllers. [CustumeAuthorize] public ActionResult ...
0
votes
1answer
433 views

IAuthorizationFilter + Ninject2

I'm currently using Ninject2 to bind the various services and repositories in my MVC app. That part seems to be working just fine. Now I'd like to also bind my own class to IAuthorizationFilter and ...
0
votes
3answers
1k views

ASP.NET MVC: Custom parameters to login page after authorization

I would like to redirect visitors to a login page with added parameters (based on the action they are performing) after the authorization fails. This is an example of what I would like to do: ...