Tagged Questions
The onactionexecuted tag has no wiki summary.
2
votes
0answers
419 views
MVC Model is null in OnExecuted action filter … or a more elegant way to set the model?
I have an ActionFilter with an override on the OnActionExecuted method. The filterContext.Controller.ViewData.Model is always null on a POST operation. I did find the following article that seems to ...
1
vote
1answer
367 views
Overriding OnActionExecuted and Getting Weird IIS Responses
So,
I have an MVC 2 site on IIS 6 (wildcard application maps/aspnet_isapi.dll hack) that where we want to direct people to different URLs depending on their preferred location, let's say la.acme.com ...
1
vote
0answers
477 views
Transaction Filter Exception handling ASP.NET MVC
I am using S#arp Architecture on a project, which comes with the [Transaction] attribute for Controller methods. With this, the Transaction Commit is called as a OnActionExecuted filter, meaning it ...
0
votes
1answer
79 views
Is it a good idea to put content access logic in a BaseController?
I'm developing an ASP.NET MVC application where the content for any page can be pulled from the database, if it exists, and displayed on the page.
This is to make it possible for non-technical ...