User Chad Moran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:13:23Zhttp://stackoverflow.com/feeds/user/25416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1830062/how-feedburner-knows-number-of-subscribers-to-a-rss-feed/1830103#1830103-1Answer by Chad Moran for How Feedburner knows number of subscribers to a RSS Feed?Chad Moran2009-12-02T01:20:07Z2009-12-02T01:20:07Z<p>Services like FeedBurner are actualy a proxy feed to your blog's feed. So when you use FeedBurner (or alike) users subscribe to a feed hosted on Google's servers that is fed from your feed.</p>
<p>Thusly people are really subscribing to the feed hosted by Google and they can then get statistics just as if you were visiting a site.</p>
http://stackoverflow.com/questions/1809042/asp-net-mvc-pass-object-from-custom-action-filter-to-action/1809541#18095410Answer by Chad Moran for ASP.NET MVC Pass object from Custom Action Filter to ActionChad Moran2009-11-27T16:07:20Z2009-11-27T16:16:41Z<p>I would recommend putting it in the Route data.</p>
<pre><code> protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
filterContext.RouteData.Values.Add("test", "TESTING");
base.OnActionExecuting(filterContext);
}
public ActionResult Index()
{
ViewData["Message"] = RouteData.Values["test"];
return View();
}
</code></pre>
http://stackoverflow.com/questions/1799357/how-to-convert-int-into-dword-return-code-from-getexitcodeprocess-c/1799393#17993930Answer by Chad Moran for How to convert INT into DWORD return code from GetExitCodeProcess [C#]Chad Moran2009-11-25T19:27:14Z2009-11-25T19:27:14Z<p>A DWORD in C# would be a uint (UInt32).</p>
http://stackoverflow.com/questions/1799348/centering-a-string-against-another-string/1799365#17993650Answer by Chad Moran for Centering a String against another stringChad Moran2009-11-25T19:22:35Z2009-11-25T19:22:35Z<p>Your question is unclear. Perhaps the <code>.PadLeft</code> and <code>.PadRight</code> methods would help you.</p>
http://stackoverflow.com/questions/1758464/whats-a-quick-way-to-convert-an-ienumerablefoo-to-listfoo-in-c-2-0/1758491#17584912Answer by Chad Moran for Whats a quick way to convert an IEnumerable<Foo> to List<Foo> in C# 2.0?Chad Moran2009-11-18T19:35:12Z2009-11-18T19:35:12Z<p>You want to use the .AddRange method on generic List.</p>
<pre><code>List<string> strings = new List<string>();
strings.AddRange(...);
</code></pre>
<p>.. or the constructor ..</p>
<pre><code>new List<string>(...);
</code></pre>
http://stackoverflow.com/questions/1758205/can-i-access-my-controller-action-verb-from-my-derived-authorizeattribute/1758256#17582561Answer by Chad Moran for Can I access my controller/action/verb from my derived AuthorizeAttribute?Chad Moran2009-11-18T18:59:01Z2009-11-18T18:59:01Z<p>Try overriding OnAuthorization instead.</p>
<pre><code>public class TestAttribute : AuthorizeAttribute
{
public override void OnAuthorization(AuthorizationContext filterContext)
{
string controllerName = filterContext.RouteData["controller"];
string actionName = filterContext.RouteData["action"];
string verb = filterContext.HttpContext.Request.HttpMethod;
// .. do your processing
// if fail...
filterContext.Result = new HttpUnauthorizedResult();
base.OnAuthorization(filterContext);
}
}
</code></pre>
http://stackoverflow.com/questions/600622/most-complete-orm-with-linq-support10Most complete ORM with LINQ support?Chad Moran2009-03-01T21:54:26Z2009-08-06T14:53:34Z
<p>I'm looking for an ORM that offers complete or near-complete LINQ support.</p>
<p>LINQ to SQL<br />
- Supports about everything inside of LINQ (.Contains, Math.Log, etc)<br />
- Cannot eager load relationship properties without creating a new datacontext</p>
<p>ADO.NET Entity Framework<br />
- Terrible LINQ support (lots of missing features).<br />
- Great mapping features
- Can eager load on demand with .Include methods on an ObjectQuery<></p>
<p>LightSpeed<br />
- Great LINQ support missing some features (.Contains within a Where)<br />
- Some of the SQL generated is very inefficient.</p>
<p>None of these seem to fit just perfectly, I honestly wish I could take bits and pieces from each. I personally really like ADO.NET EF except the features it is missing make it just frustrating to use.</p>
<p>I know some people praise NHibernate up and down and I'm not knocking it but I spent today trying it out and it's ok but it's LINQ support is not that great.</p>
http://stackoverflow.com/questions/1169355/how-do-i-deploy-an-asp-net-mvc-application-if-the-isp-doesnt-use-a-bin-directory/1169439#11694390Answer by Chad Moran for How do I deploy an ASP.NET MVC application if the ISP doesn't use a BIN directory?Chad Moran2009-07-23T03:26:53Z2009-07-23T03:26:53Z<p>You should be able to set the output directory or your project to cgi-bin if you want. If you right-click your project and click on Properties. From there you should be able to select Build in the left list of options and set the output directory to whatever you want.</p>
http://stackoverflow.com/questions/558925/caching-strategy-output-cache-vs-data-cache-or-both1Caching strategy, Output Cache vs Data Cache or both?Chad Moran2009-02-17T22:04:19Z2009-07-12T14:12:36Z
<p>I'm working on an ASP.NET MVC project and I've come to the point where I want to start considering my caching strategy. I've tried to leave my framework as open as possible for the use in caching.</p>
<p>From what I heard during Scott Hanselman's podcast StackOverflow.com uses page output caching and zips that content and puts it into RAM. This sounds like this would be great for user-wide cache but for something like personalized pages you would have to cache a version for each user and that could get out of control very quickly.</p>
<p>So, for a caching strategy. Which should be used, Output Caching, Data Caching or combined? My first thoughts are both but as far as cache dependencies it sounds like it could get a bit complex.</p>
http://stackoverflow.com/questions/1048282/would-you-recommend-using-the-mvc-futures-library/1048665#10486653Answer by Chad Moran for Would you recommend using the MVC Futures library?Chad Moran2009-06-26T11:38:29Z2009-06-26T11:38:29Z<p>I think it has some features that really should be in the MVC library but I would stay away from the strongly-typed action links. That can get extremely expensive on the CPU potentiall9y adding SECONDS (not MS) to your page render time.</p>
<p><a href="http://www.chadmoran.com/blog/2009/4/23/optimizing-url-generation-in-aspnet-mvc-part-2.html" rel="nofollow">http://www.chadmoran.com/blog/2009/4/23/optimizing-url-generation-in-aspnet-mvc-part-2.html</a></p>
<p>One of the functions available in MVC futures I often find myself using is RenderAction since it is the only way to worka around partial output caching.</p>
http://stackoverflow.com/questions/1041919/how-are-you-able-to-unit-test-your-controllers-without-an-ioc-container/1041930#10419301Answer by Chad Moran for How are you able to Unit Test your controllers without an IoC container?Chad Moran2009-06-25T02:41:10Z2009-06-25T02:41:10Z<p>You could have a default constructor with your controller that will have some sort of default behavior.</p>
<p>Something like...</p>
<pre><code>public QuestionsController()
: this(new QuestionsRepository())
{
}
</code></pre>
<p>That way by default when the controller factory is creating a new instance of the controller it will use the default constructor's behavior. Then in your unit tests you could use a mocking framework to pass in a mock into the other constructor.</p>
http://stackoverflow.com/questions/1023360/asp-net-mvc-many-to-many-insert-using-linq-to-sql/1023954#10239541Answer by Chad Moran for ASP.Net MVC Many To many Insert Using LINQ TO SQLChad Moran2009-06-21T13:56:36Z2009-06-21T13:56:36Z<p>Since LINQ to SQL only supports a strict 1:1 mapping with your database you would have to make a link table. This would look something like...</p>
<p>[ProductCategories]<br />
ID<br />
ProductID (FK)<br />
CategoryID (FK) </p>
<p>Then for every relationship of product to categories you would just make a new ProductCategories entity and insert it. So given the data...</p>
<p>Products<br />
ID Name<br />
1 Apple<br />
2 XBOX 360</p>
<p>Categories<br />
ID Name<br />
1 Produce<br />
2 Electronics<br />
3 Game Systems</p>
<p>Your link table would look like</p>
<p>ProductCategories<br />
ID ProductID CategoryID<br />
1 1 1<br />
2 2 2<br />
3 2 3</p>
http://stackoverflow.com/questions/984058/does-this-seem-like-an-alright-approach-to-implementing-tabs-in-asp-net-mvc/984188#9841880Answer by Chad Moran for Does this seem like an alright approach to implementing tabs in ASP.NET MVC?Chad Moran2009-06-11T22:53:15Z2009-06-11T22:53:15Z<p>The most elegant solution I've ever seen was done by Torkel Ödegaard over at <a href="http://www.codinginstinct.com/" rel="nofollow">http://www.codinginstinct.com/</a> using ViewModel inheritance. It includes a great fluent interface for adding/manipulating tabs.</p>
<p>Now his view code is using the Spark view engine but you could easily implement it in the WebForm view engine.</p>
<p><a href="http://www.codinginstinct.com/2008/10/view-model-inheritance.html" rel="nofollow">http://www.codinginstinct.com/2008/10/view-model-inheritance.html</a></p>
http://stackoverflow.com/questions/973205/asp-net-mvc-default-route/973262#9732620Answer by Chad Moran for ASP.NET MVC Default route?Chad Moran2009-06-10T01:08:49Z2009-06-10T01:08:49Z<p>When you don't provide the route name or the action is determined through a HTTP request it will look in order from the order they were added. The first time it finds one that matches, it stops. So what's probably happening is it's matching one previous to the one you've added.</p>
http://stackoverflow.com/questions/971155/post-bind-models/971179#9711790Answer by Chad Moran for Post: Bind ModelsChad Moran2009-06-09T16:37:14Z2009-06-09T16:37:14Z<p>From what code you have provided the only thing I can see is where you're calling <code>member.Pictures.add</code> you're not actually passing anything in. Therefor nothing is getting added to the pictures collection.</p>
http://stackoverflow.com/questions/964147/asp-net-mvc-is-it-possible-to-have-a-mvc-subproject-in-a-forms-rootproject/966015#9660150Answer by Chad Moran for ASP.NET MVC - Is it possible to have a MVC subproject in a FORMS rootproject?Chad Moran2009-06-08T17:29:46Z2009-06-08T17:29:46Z<p>That would imply you would want bind 2 (two) IIS sites to the same IP/Port which would create an issue in IIS. I think instead you should try to run a hybrid project with both and have some handled by WebForms and some handled by MVC. You could always just split up the MVC project and have data access, business logic and controllers in another project if you want. If you want to see an example of this there's a link below to the S#arp Architecture which splits an MVC project into many parts.</p>
<p><a href="http://sharparchitecture.net/" rel="nofollow">http://sharparchitecture.net/</a></p>
http://stackoverflow.com/questions/941731/asp-net-mvc-model-business-objects/941796#9417964Answer by Chad Moran for ASP.NET MVC Model & Business ObjectsChad Moran2009-06-02T20:41:56Z2009-06-02T20:41:56Z<p>From a design standpoint I would design it like this. Of course naming is just for the purpose of this post you don't have to name your DAL and BLL ..Repository and ..Service.</p>
<p>Have repositories (or one) where your data access/queries should be happening. It should ideally just contain queries (compiled or not). I personally have a repository for each data type to help keep queries separated.</p>
<p>The next layer should be your business layer which I like to call services. These classes are responsible for all logic regarding validation, prep steps and anything else needed to be done to get the consumer of the service the information it needs. As with an ASP.NET MVC app I have my services return view models which are then directly passed into strongly-typed views. With my services I usually group them logically together instead of one for each data type.</p>
<p>This is a great design because it keeps your data access code and presentation code nice and thin and most of the logic where things can go wrong is in your service (or business) layer.</p>
http://stackoverflow.com/questions/276433/do-you-think-its-advantageous-to-switch-to-entity-framework16Do you think it's advantageous to switch to Entity Framework?Chad Moran2008-11-09T20:25:43Z2009-05-24T13:02:20Z
<p>With LINQ to SQL most likely going to not get as much active development as Entity Framework do you think it's best to switch to Entity Framework?</p>
<p>I've personally found EF to be very clunky and hard to use compared to LINQ to SQL which feels very natural.</p>
<p>EDIT: I recently posted an article on my blog about my feelings towards this potential decision...</p>
<p><a href="http://weblogs.asp.net/chadmoran/archive/2008/11/09/ado-net-v-linq-to-sql.aspx" rel="nofollow">ADO.NET v LINQ to SQL</a></p>
http://stackoverflow.com/questions/868622/asp-net-mvc-findpartialview-performance/869755#8697550Answer by Chad Moran for asp.net mvc findpartialview performanceChad Moran2009-05-15T16:51:58Z2009-05-15T16:51:58Z<p>One thing you can do to help performance when you're using RenderPartial() or View() is to return the path to the view that way it doesn't have to search for it. When you provide only the file name it has to determine it's only a file name then search for the view in a list of folders.</p>
http://stackoverflow.com/questions/864827/whats-the-difference-between-routelink-and-actionlink-in-asp-net-mvc/864861#86486110Answer by Chad Moran for What's the difference between RouteLink and ActionLink in ASP.NET MVC?Chad Moran2009-05-14T18:11:24Z2009-05-14T18:51:37Z<p>Action and Routes don't have to have a 1:1 relationship.</p>
<p>ActionLink will generate the URL to get to an action using the first matching route by action name.</p>
<p>RouteLink will generate a URL to a specific route determined either by name or route values.</p>
<p>I wrote an in-depth article on URL generation performance in ASP.NET MVC...</p>
<p><a href="http://www.chadmoran.com/blog/2009/4/23/optimizing-url-generation-in-aspnet-mvc-part-2.html" rel="nofollow">http://www.chadmoran.com/blog/2009/4/23/optimizing-url-generation-in-aspnet-mvc-part-2.html</a></p>
http://stackoverflow.com/questions/859119/nerd-dinners-controllers-question/859137#8591374Answer by Chad Moran for Nerd Dinners Controllers QuestionChad Moran2009-05-13T16:57:26Z2009-05-13T17:02:59Z<p>ASP.NET MVC favors Convention over Configuration. Meaning it will look for a controller with a Controller suffix and not include it as part of the URL and only include the prefix to Controller. So if you have HomeController you could visit /Home/ just as DinnersController means /Dinners/. This happens as part of the ASP.NET MVC framework itself.</p>
<p>If you look at the default route in Global.asax you'll see it uses a format for the URL that looks like...</p>
<pre><code>"{controller}/{action}/{id}"
</code></pre>
<p>This means take the name of the controller and the name of the action and point the request to that method.</p>
<p>So for DinnersController Index action method it would look like /Dinners/Index.</p>
http://stackoverflow.com/questions/856405/asp-net-mvc-what-is-the-models-folder-for/859124#8591242Answer by Chad Moran for ASP.NET MVC ,What is the Models Folder for?Chad Moran2009-05-13T16:56:32Z2009-05-13T16:56:32Z<p>Models is the M in MVC. Though no functionality is provided in the default project template it's meant to be used by a data access technology. Whether it be web services, ado.net, linq to sql, nhibernate, etc.</p>
<p>Of course you don't have to put it there you could put each part of the project in it's own project, it's up to you. It's simply there to help facilitate the MVC pattern and has no actual function.</p>
http://stackoverflow.com/questions/606962/outputcache-and-renderaction-cache-whole-page4OutputCache and RenderAction cache whole pageChad Moran2009-03-03T15:58:32Z2009-05-13T06:29:36Z
<p>I have a ViewPage that contains <code><% Html.RenderAction<MyController>(c => c.SidebarStats()); %></code>. On the controller action for the action SidebarStats I have an OutputCache action filter to cache only that part of the page. However, the whole page is getting cached and not just that action.</p>
<p>I remember seeing somewhere that this might be a bug with ASP.NET MVC though I'm not sure. I'm currently using ASP.NET MVC RC1, IIS7, Windows Server 2008 and .NET 3.5 SP1.</p>
http://stackoverflow.com/questions/835181/capturing-output-in-asp-net-mvc/835392#8353920Answer by Chad Moran for capturing output in ASP.NET MVCChad Moran2009-05-07T15:39:08Z2009-05-07T15:39:08Z<p>There's a great post about partial output caching and includes code about how to capture output using an attribute.</p>
<p>The post: <a href="http://blog.codeville.net/2008/10/15/partial-output-caching-in-aspnet-mvc/" rel="nofollow">http://blog.codeville.net/2008/10/15/partial-output-caching-in-aspnet-mvc/</a><br />
The code: <a href="http://blog.codeville.net/blogfiles/2008/October/ActionOutputCacheAttribute.cs" rel="nofollow">http://blog.codeville.net/blogfiles/2008/October/ActionOutputCacheAttribute.cs</a></p>
http://stackoverflow.com/questions/834060/mvc-getting-membership-provider-to-work/835360#8353601Answer by Chad Moran for MVC - Getting membership provider to workChad Moran2009-05-07T15:32:48Z2009-05-07T15:32:48Z<p>This a misconfiguration. It looks like the connection string being used is trying to create or use a database that doesn't exist. Make sure your connection string is pointing to the right database. By default the application services (Membership, Profile, Roles) use the ApplicationServices connection string in your project's web.config file.</p>
http://stackoverflow.com/questions/825625/are-there-any-asp-net-mvc-reference-applications/825722#8257226Answer by Chad Moran for Are there any ASP.Net MVC reference applicationsChad Moran2009-05-05T16:22:49Z2009-05-05T16:30:12Z<p>NerdDinner<br />
<a href="http://www.codeplex.com/NerdDinner" rel="nofollow">http://www.codeplex.com/NerdDinner</a></p>
<p>MVC Storefront<br />
<a href="http://www.codeplex.com/mvcsamples" rel="nofollow">http://www.codeplex.com/mvcsamples</a></p>
<p>KIGG (MVC implementation of Digg running at dotnetshoutout.com)<br />
<a href="http://www.codeplex.com/kigg" rel="nofollow">http://www.codeplex.com/kigg</a></p>
<p>Oxite<br />
<a href="http://www.codeplex.com/oxite" rel="nofollow">http://www.codeplex.com/oxite</a></p>
<p>Code Camp Server<br />
<a href="http://code.google.com/p/codecampserver/" rel="nofollow">http://code.google.com/p/codecampserver/</a></p>
<p>CarTrackr<br />
<a href="http://www.codeplex.com/CarTrackr" rel="nofollow">http://www.codeplex.com/CarTrackr</a></p>
<p>StackOverflow (no source of course)<br />
<a href="http://www.stackoverflow.com" rel="nofollow">http://www.stackoverflow.com</a></p>
http://stackoverflow.com/questions/825483/which-redirect-has-precedence-the-one-in-controller-action-or-in-actionfilters/825527#8255270Answer by Chad Moran for Which redirect has precedence - the one in controller action or in ActionFilter's OnActionExecuted?Chad Moran2009-05-05T15:47:21Z2009-05-05T15:58:09Z<p>They can't both happen as they both return a HTTP 302 redirect.</p>
<p>The attribute will execute the redirect since it's the last thing to happen before the result is sent to the client. Both OnActionExecuting and OnActionExecuted will happen over top of the controller's action result.</p>
http://stackoverflow.com/questions/539235/vs2008-dbml-designer-and-windows-73VS2008 DBML designer and Windows 7Chad Moran2009-02-11T22:51:28Z2009-05-05T15:56:09Z
<p>Not sure if anyone has noticed this yet but if you run Visual Studio 2008 with the DBML (not sure about EF yet) under Windows 7 the tables will disappear when you hover over them. Looking for a fix so I thought I'd ask everyone since I've seen it asked in comments but not as a question yet.</p>
<p><strong>EDIT</strong></p>
<p>I've filed a bug with Microsoft. Anyone else who wants to help get it fixed please validate it as a bug.</p>
<p><a href="http://is.gd/jQbD" rel="nofollow">http://is.gd/jQbD</a></p>
http://stackoverflow.com/questions/825294/asp-net-beginform-expression-syntax/825339#8253392Answer by Chad Moran for ASP.NET BeginForm() expression syntaxChad Moran2009-05-05T15:11:10Z2009-05-05T15:11:10Z<p>You can just pass in <code>string.Empty</code> and it'll be filled in when you post the form.</p>
<p>I wouldn't pass in null. What happens it it'll accept what you passed into the expression first and then overwrite that with anything from the posted form. I find it a best practice to use string.Empty instead of null.</p>
http://stackoverflow.com/questions/823528/how-do-i-set-the-page-title-in-an-asp-net-mvc-view/825229#8252291Answer by Chad Moran for How do I set the page title in an ASP.NET MVC view?Chad Moran2009-05-05T14:50:03Z2009-05-05T14:50:03Z<p>I would recommend 2 options.</p>
<p>First would to set something up in your master page that did something like this.</p>
<pre><code><% Page.Title = ViewData["Title"] ?? "Default title"; %>
</code></pre>
<p>Or set up a content placeholder in the head/title section that you could implement in your views to set the title with HTML.</p>
http://stackoverflow.com/questions/1871566/hot-get-the-name-of-an-objectComment by Chad Moran on Hot get the name of an object?Chad Moran2009-12-09T04:30:51Z2009-12-09T04:30:51ZDuplicate of <a href="http://stackoverflow.com/questions/729803/print-name-of-the-variable-in-c" rel="nofollow" title="print name of the variable in c">stackoverflow.com/questions/729803/…</a>http://stackoverflow.com/questions/1759154/c-string-parsing-to-variable-types/1759177#1759177Comment by Chad Moran on C# string Parsing to variable typesChad Moran2009-11-18T21:31:32Z2009-11-18T21:31:32ZThis is awesome!http://stackoverflow.com/questions/1746047/web-development-do-we-still-need-to-support-non-javascript-users/1746059#1746059Comment by Chad Moran on Web Development: Do we still need to support non-javascript users?Chad Moran2009-11-17T02:18:36Z2009-11-17T02:18:36ZI completely agree. The best way to approach something like this is to use unobtrusive javascript.http://stackoverflow.com/questions/174863/how-to-turn-off-warning-for-no-xml-comment-in-vs-2005/174887#174887Comment by Chad Moran on How to turn off warning for no xml comment in VS 2005Chad Moran2009-06-21T23:18:48Z2009-06-21T23:18:48ZThat doesn't mean this wasn't a correct answer.http://stackoverflow.com/questions/937779/correct-way-to-reference-javascript-in-asp-net-mvc/937790#937790Comment by Chad Moran on Correct way to reference Javascript in ASP.NET MVC?Chad Moran2009-06-02T03:36:08Z2009-06-02T03:36:08ZI also do it this way.http://stackoverflow.com/questions/276433/do-you-think-its-advantageous-to-switch-to-entity-framework/903727#903727Comment by Chad Moran on Do you think it's advantageous to switch to Entity Framework?Chad Moran2009-05-25T18:08:49Z2009-05-25T18:08:49ZThis is incorrect. Microsoft currently has 5 devs on LINQ to SQL.http://stackoverflow.com/questions/878578/how-can-i-have-lowercase-routes-in-asp-net-mvc/878586#878586Comment by Chad Moran on How can I have lowercase routes in ASP.NET MVC?Chad Moran2009-05-18T16:50:12Z2009-05-18T16:50:12ZI highly recommend not using the default route.http://stackoverflow.com/questions/864827/whats-the-difference-between-routelink-and-actionlink-in-asp-net-mvc/864861#864861Comment by Chad Moran on What's the difference between RouteLink and ActionLink in ASP.NET MVC?Chad Moran2009-05-15T00:13:05Z2009-05-15T00:13:05ZAh yes, we met at the podcast. Was great meeting you.http://stackoverflow.com/questions/859119/nerd-dinners-controllers-question/859137#859137Comment by Chad Moran on Nerd Dinners Controllers QuestionChad Moran2009-05-13T17:01:07Z2009-05-13T17:01:07ZYes, it only uses the prefix to Controller.http://stackoverflow.com/questions/606962/outputcache-and-renderaction-cache-whole-page/856377#856377Comment by Chad Moran on OutputCache and RenderAction cache whole pageChad Moran2009-05-13T16:49:43Z2009-05-13T16:49:43ZYou the man Phil, I knew there had to be an elegant solution. Thanks!http://stackoverflow.com/questions/825483/which-redirect-has-precedence-the-one-in-controller-action-or-in-actionfilters/825527#825527Comment by Chad Moran on Which redirect has precedence - the one in controller action or in ActionFilter's OnActionExecuted?Chad Moran2009-05-05T16:24:30Z2009-05-05T16:24:30ZI agree, it logically doesn't make sense.http://stackoverflow.com/questions/825483/which-redirect-has-precedence-the-one-in-controller-action-or-in-actionfilters/825546#825546Comment by Chad Moran on Which redirect has precedence - the one in controller action or in ActionFilter's OnActionExecuted?Chad Moran2009-05-05T15:57:04Z2009-05-05T15:57:04ZActually both OnActionExecuting and OnActionExecuted redirect over the controller's action.http://stackoverflow.com/questions/823152/how-to-choose-a-data-access-method-in-asp-net-mvc/823329#823329Comment by Chad Moran on How to choose a data access method in ASP.NET MVC?Chad Moran2009-05-05T15:21:38Z2009-05-05T15:21:38ZGreat answer Marc.http://stackoverflow.com/questions/815465/ways-to-workaround-whole-page-caching-in-asp-net-mvc/815512#815512Comment by Chad Moran on Ways to workaround whole page caching in ASP.NET MVCChad Moran2009-05-02T20:11:39Z2009-05-02T20:11:39ZI was thinking about that but I'd hate to not have downlevel support for those that have javascript disabled.http://stackoverflow.com/questions/807662/why-is-validateinputfalse-not-working/807715#807715Comment by Chad Moran on Why is ValidateInput(False) not working?Chad Moran2009-04-30T16:27:38Z2009-04-30T16:27:38ZWe all mistakes, without them no one would learn. :)