-
-
I’ve went through the ASP.NET MVC Preview 4 source and found some interesting finds that will help you do work more easily. These 6 finds are just the tip of what I’m sure is included in this drop. (Read more…)
-
-
I’m putting out a plea for help. For some odd reason, we have a WCF service (running in IIS 6) that’s using streaming and BasicHttpBinding that will return a 404 error message every time it’s called from our client. Hitting the same URL on the box itself through IE renders the WSDL just fine. If you have seen this issue, please contact me. We’ve been struggling with this issue and have yet to find a resolution. BTW, it works great on another web server that is configured the same, and we’ve looked at all of the verbose logs WCF can give us. Ultimately, we’re seeing the message being sent from the client, and a 404 in the IIS log, but nothing on the server logging. Thanks!
-
-
ASP.NET MVC Sample for using the Post-Redirect-Get pattern updated to the MVC Preview 3 bits. Showcasing some newer functionality that makes the pattern more simplistic.(Read more…)
-
-
Learn how to use the new SubDataItems within the ASP.NET MVC Preview 3 bits with your View User Control. Also explains a small patch to the framework to get this to work correctly. (Read more…)
-
-
Find out about a nasty bug identified using certain routing schemes and RedirectToAction, and what workarounds you have. (Read more…)
-
-
Utilizing Lambda expressions, make the RedirectToAction method much easier to use, read, and refactor! This update took the original sample and it now works with the MVC Preview 3 bits. (Read more...)
-
-
Here's something very cool I just found in the ASP.NET MVC Preview 3 bits, you can specify, what I call, "dot" notation expressions on your view data. With the new ViewDataDictionary you can now use the "dot" notation expressions to get access the same value as using the safely typed Model. (Read More...)
-
-
Learn how to easily use localization within an ASP.NET MVC application utilizing similar methods to that of ASP.NET resource expressions. I show 3 different approaches to using localization within your application. (Read more...)
-
-
Since the introduction of lambda expressions within the .NET framework, and it's extensive use of them within ASP.NET MVC, I've grown extremely fond of working with compile time errors that lambda expressions gives us. You've seen the ASP.NET MVC team build out a set of ActionLink<T> methods that enable you to specify an expression that will be compiled like the following (Read more...)
-
-
I've taken some recommendations regarding the MVC UI Validation framework I originally posted about, which is available within the MvcContrib project. I'm still working on future advancements like attributing your model, but I did make a significant step forward ensuring both client and server side validation is successful. With some simple changes to how you are generating your validators, you can easily achieve this new functionality. (Read more...)