asp.net mvc

Tag details

Welcome to the 'asp.net mvc' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'asp.net mvc'.

Look up Offsite Link "asp.net", Offsite Link "mvc" at The Free Dictionary

Latest blogosphere posts tagged “asp.net mvc”

  • Dew Drop – December 3, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Microsoft Updates ...
    16 hours ago
  • Dew Drop – December 2, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Microsoft Updates ...
    1 day ago
  • PDC09: ASP.NET MVC 2: Ninjas Still on Fire Black Belt Tips


    Scott Hanselman's Computer ZenAuthority Authority: 504
    While I was at PDC last week in Los Angeles I got to present an ASP.NET MVC 2 presentation. Phil has been home playing with his new baby so I was thrilled to be able to give a presentation on his behalf. I gave the talk immediately after the Day 2 keynote a few minutes after they announced that they were giving ...
    1 day ago
  • Hanselminutes Podcast 188: ASP.NET MVC 2 Beta with Phil Haack


    Scott Hanselman's Computer ZenAuthority Authority: 504
    My one-hundred-and-eighty-eighth podcast is up . This last week I was at PDC but just before he left I chatted with Phil Haack about his exciting release of ASP.NET MVC 2 Beta. They chat about the changes, and Scott gets a surprise phone call from The Gu . Subscribe: Download: MP3 Full Show ...
    1 day ago
  • Validating ASP.NET MVC Route Values with ActionFilterAttribute


    Jay Harris is Cpt. LoadTestAuthority Authority: 93
    In ASP.NET MVC, the default signature for a Details action includes an Int32 methodargument. The system works fine when the expected data is entered, and the happy pathis followed, but put in an invalid value or no value at all, and an exception explodesall over the user. The ...
    3 days ago
  • Adding html attributes support for Templates - ASP.Net MVC 2.0 Beta


    AspAdviceAuthority Authority: 122
    ASP.Net mvc 2.0 beta, supports templates feature.  Templates are a way to write reusable view code.  They significantly simplifies the code we need to write in views. You can read more about templates here .  In this post I will show a way to extend the ModelMetadata and add support for Html Attributes which ...
    4 days ago
  • Contact Management ASP.NET MVC Tutorial Error


    Evonet ConsultingAuthority Authority: 93
    The ASP.NET MVC tutorials at http://www.asp.net/learn/mvc/ are an excellent resource to learning Microsoft’s MVC implementation for .NET.   In particular, there are a number of tutorials focussed on creating a Contact Manager ASP.NET MVC Application which are a great walkthrough of the MVC structure.  The C# ...
    4 days ago
  • Zen Coding – VS Studio Plugin


    Bill BeckelmanAuthority Authority: 100
    Last week I saw an article on Ajaxian about Zen Coding which is a way to generate html markup and css from css selectors. Something like div#Dialog>fieldset>ol>li*3>label + a hotkey will create: Code Snippet div id ="Dialog">      fieldset >          ol ...
    5 days ago
  • Dew Drop – November 27. 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Team Build and Layer ...
    6 days ago
  • Validating DataAnnotations


    Eric PolereckyAuthority Authority: 110
    public static IList GetClassLevelErrors( object instance){ return TypeDescriptor.GetAttributes(instance).OfType () .Where(attribute => !attribute.IsValid(instance)) .Select(attribute => attribute.FormatErrorMessage( string .Empty)) .ToList();} [TestMethod] public void ...
    1 week ago
  • Dew Drop – November 25, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Web Deployment ...
    1 week ago
  • Useful Moq Extension Method


    Matt Manela's BlogAuthority Authority: 93
    I have been working with ASP .NET MVC and I use the Moq mocking library to help test the code I write.   Often in ASP MVC anonymous objects are passed around as function arguments.  This is especially common in calls to RouteUrl.  Since I want to be able to test this and verify that it is called correctly I ...
    1 week ago
  • Dew Drop – November 24, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Source Code for ...
    1 week ago
  • Base Controller Class and TempData


    Eric PolereckyAuthority Authority: 110
    Need: To pass information to every view based on an environmental variable. The specific case I ran across this need is when you want to use the minified version of your JavaScript libraries in production and the human readable in dev/QA. Solution: Create your own base controller class. Override either ...
    1 week ago
  • Recent Podcasts


    you've been HAACKEDAuthority Authority: 551
    Just wanted to highlight a couple of podcasts that were suckers gracious enough to have me as a guest. HerdingCode In this podcast I join the fellas at HerdingCode . Although this podcast came out after the Hanselminutes one, it was actually recorded a long time prior to that one. Jon Galloway , who ...
    1 week ago
  • ASP.NET MVC: Creating reports using Chart control


    Gunnar Peipman's ASP.NET blogAuthority Authority: 413
    ASP.NET Chart control is powerful control you can use to add charting support to your web applications. Although chart controls are mainly used with ASP.NET forms it is not very hard to use them also in ASP.NET MVC applications . In this posting I will show you how to use ASP.NET Chart control in ASP.NET MVC ...
    1 week ago
  • Connected Show #20 – Who’s Exception Is It?!


    JrzyShr Dev GuyAuthority Authority: 105
    In this episode guest Milan Negovan talks about health monitoring in ASP.NET and what to do when things go wrong! (Starts at 24:47).  We cover different options on exception handling & instrumentation in web applications. Peter and Dmitry talk about Eclipse support for Windows 7, the Windows Azure Content ...
    2 weeks ago
  • A better Model Binder addendum


    Jimmy BogardAuthority Authority: 405
    A while back, I wrote about a ModelBinder enhancement we use to do arbitrary filtering on types.  The underlying matching algorithm only matches on one type, but we like to use layer supertypes for a lot of our domain objects, so we want to use a single model binder for every Entity or Enumeration type in our ...
    2 weeks ago
  • Html.RenderAction and Html.Action


    you've been HAACKEDAuthority Authority: 551
    One of the upcoming new features being added to ASP.NET MVC 2 Beta is a little helper method called Html.RenderAction and its counterpart, Html.Action . This has been a part of our ASP.NET MVC Futures library for a while, but is now being added to the core product. Both of these methods allow you to call into an ...
    2 weeks ago
  • Dew Drop – November 18, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Project 2010 Reference: ...
    2 weeks ago

Comments about asp.net mvc

Personal attacks are NOT allowed
Please read our comment policy