Articles : Page 1 of 1

  • What’s the Difference Between a Value Provider and Model Binder?

    What’s the Difference Between a Value Provider and Model Binder?

    Jun 11
    30

    ASP.NET MVC 3 introduced the ability to bind an incoming JSON request to an action method parameter, which is something I wrote about before. For example, suppose you have the following class defined (keeping it really simple here): public class ComicBook { public string Title { get; set; } public int IssueNumber { get; set; } } And you have an action method that accepts an instance of ComicBook: [HttpPost] public ActionResult Update(ComicBook comicBook) { // Do something with ComicBo...


  • JsonValueProviderFactory in ASP.NET MVC 3

    JsonValueProviderFactory in ASP.NET MVC 3

    Jan 11
    07

    A quick post on the new JsonValueProviderFactory in ASP.NET MVC 3. It is easy to take this new feature for granted....

    • JSON
    • MVC3

  • Dec 5th Links: ASP.NET, ASP.NET MVC, jQuery, Silverlight, Visual Studio

    Dec 5th Links: ASP.NET, ASP.NET MVC, jQuery, Silverlight, Visual Studio

    Dec 10
    06

    Here is the latest in my link-listing series. Also check out my VS 2010 and .NET 4 series for another on-going blog series I’m working on. [In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu] ASP.NET ASP.NET Code Samples Collection: J.D. Meier has a great post that provides a detailed round-up of ASP.NET code samples and tutorials from a wide variety of sources. Lots of useful pointers. Slash your ASP.NET com...


  • ASP.NET MVC 3 Preview 1 Released

    ASP.NET MVC 3 Preview 1 Released

    Jul 10
    27

    The title says it all, so go get your copy today and check out all the new features.  You can download it here. New features include: Razor View Engine Dynamic View and ViewModel Properties Add View Dialog Box Supports Multiple View Engines Service Location and Dependency Injection Support Global Filters New JsonValueProviderFactory Class Support for [...]...



  • 1