Friday, March 05, 2010 from weblogs.asp.net
ASP.NET MVC 2 futures assembly provides a HTML helper method Serialize that can be use for persisting your model object.
Friday, March 05, 2010 from Stephen Walther
We updated the browser definitions files included with ASP.NET 4 to include information on recent browsers and devices such as Google Chrome and the iPhone. You can use these browser definition files with earlier versions of ASP. ...
Friday, March 05, 2010 from blog.jorritsalverda.nl
I’m going to do a series on how I’ve set up a number of ASP.NET MVC projects for customers with very high-traffic sites and continuously changing...
Friday, March 05, 2010 from shashankshetty
In our ASP.Net MVC application we want to separate the presentation code associated with HTML views from the act of binding data to HTML controls. We also want to get more of the UI control generation under test. This is our latest refinement towards those goals. Html page for Address: ...
Friday, March 05, 2010 from bill sternberger
This post arrives to you today from the awesome Hotel Dunn Inn in beautiful San Jose, Costa Rica! Best. Beds. Ever. It was time to clear the brain and work on.
Friday, March 05, 2010 from todd
Test Automation Pyramid in ASP.NET MVC This is a reposting of my comments from Mike Cohn’s Test Automation Pyramid I often use Mike’s Test Automation Pyramid to explain to clients’ testers and developers how to structure a test strategy. It has proved the most effective rubric (say compared with the ...
Friday, March 05, 2010 from Billy McCafferty
Obviously, S#arp Architecture is the bee's knees when it comes to developing ASP.NET MVC applications. ;) But as a project evolves and gets larger, "out of the box" S#arp Architecture 1.0 guidance runs into a few pain points. Particularly, there's poor use of the application services layer, the sepa ...
Thursday, March 04, 2010 from noreply@blogger.com (Deran Schilling)
Contact Form with ASP.NET MVC, Castle Validation, & fluentHtml. Here's another little tutorial for those of you new to MVC &/or fluentHtml. I figure I'll do these little tutorials until I find a new project to work on. ...
Thursday, March 04, 2010 from ChipOne
I am working with a set of images stored in an SQL database in my ASP.NET MVC project. I would like to load the images asynchronously (and preferably effortlessly) and as “in-line” as possible from my pages. ...
Thursday, March 04, 2010 from admin
I’m not certain why but for a while now I’ve really wanted to write a sort of python/ruby-esque DSL on top of ASP.NET MVC. I am probably going a little crazy and this is a dumb idea but I thought I might as well write it down and get it out of my system. It would look something like this: controller ...
Wednesday, March 03, 2010 from blog.abodit.com
In my next few posts I’ll explain how we can overcome all of these shortcomings of ASP. ... NET MVC to create a great SEO-friendly web site. Stay tuned!...So let’s take a look at all the things we really want to be able to do when creating an SEO friendly web site and see how we can get ASP. NET MVC to handle them....
Wednesday, March 03, 2010 from www.thinkingguy.net
I ran into a situation where I need to model bind to types derived from a common base (class or interface) in MVC....
Wednesday, March 03, 2010 from West
In short; most of the time unless you have a *really* good reason not to. With the use of generics being able to specify a strongly typed model per view / partial view is so easy with the baked in functionality in the framework, so why aren’t you using it? Why? The whole point of MVC is to have cont ...
Tuesday, March 02, 2010 from (liammclennan)
Why Use Client-side Javascript Templates? When building rich internet applications you often need to construct html on the client. I am going to demonstrate how to construct DOM elements using the jqote jQuery plugin (2.0.0). The naive approach to client-side html generation is to embed html inside ...
Tuesday, March 02, 2010 from Travis Illig
Messing around with ASP.NET MVC 2.0 (in VS2010 RC1), specifically the validation done with DataAnnotations, and created a simple no-op custom validator attribute like this: [AttributeUsage(AttributeTargets.Class, AllowMultiple = true ...