ASP.NET MVC

Prior ASP.NET 4.0, the only way to handle extensionless URLs was setting runAllManagedModulesForAllRequests=”true” (IIS 7 integrated mode) or mapping a wildcard (IIS 6 and IIS 7 in classic mode). That impacts the performance of static requests (HTML, JPG, GIF, CSS, JS, etc), because a all requests are handled by ASP.NET and runs application pipeline with all attached modules.

ASP.NET v4.0 provides a better way to enable extensionless URLs routing.
There is a new feature that allows extensionless URLs to be directed into managed code, without a wildcard mapping or setting runAllManagedModulesForAllRequests=”true”.
Because of this feature all static resources requests are not longer handled by ASP.NET, and consequentially, they are no longer suffered by performance impact.

igorz 17/02/2011 - 08:01

There is another ASP.NET MVC extension project ASP.NET MVC Extensions (previously known as System.Web.Extensibility)

 

It was developed siince Decemper 2009 and today celebrates it's v1.0 RTM release

 

" ASP.NET MVC Extensions (aka System.Web.Mvc.Extensibility) is developed on top of ASP.NET MVC extensibility point, which allows your IoC Container to rule everywhere."

 

project is hosted at Codeplex http://mvcextensions.codeplex.com/

igorz 12/05/2010 - 13:00

This is the contrib project for the ASP.NET MVC framework. This project adds additional functionality on top of the MVC Framework. These enhancements can increase your productivity using the MVC Framework. It is written in C#. Founded by Eric Hexter and Jeffrey Palermo.

 

In the MvcContrib project there is an HTML helper for putting data into a <table>. The syntax looks like this:

 

igorz 07/12/2009 - 10:21

Very helpful blog entry ASP.NET MVC Cheat Sheets

enjoy!

igorz 24/11/2009 - 14:41

MvcConf is a virtual conference focused on one thing: writing awesome applications on top of the ASP.Net MVC framework. Your brain will explode from taking in so much hard core technical sessions. Sounds fun eh?  This is a community event and we want the best and brightest sharing what they know.

 

Register here:

http://mvcconf.com/attend

igorz 06/02/2011 - 08:39

I started research of using IronPython on ASP.NET MVC.

There are resources I found helpful:

 

Official Site: http://ironpython.net/ (download links are not up to date)

Downloads: http://ironpython.codeplex.com/

 

ASP.NET Dynamic Language Support:

http://aspnet.codeplex.com/wikipage?title=Dynamic%20Language%20Support&referringTitle=Home&ProjectName=aspnet

IronPython integration with ASP.NET, No support for ASP.NET MVC (at least for now, seems they did support ASP.NET MVC in the past)

 

The New Dynamic Language Extensibility Model for ASP.NET: http://www.asp.net/dynamiclanguages/whitepaper

igorz 19/11/2010 - 13:39

Very sool we will get new view engine from ASP.NET MVC.

It is under development with codename "Razor".

read more about in Scott Guthrie's blog.

 

Why we nee yet another view engine? Is it better then others?

By me the best feature of "Razor" is integration with Visual Studio (due to made by MS).

Of couse I will prefer it to others since they have no such feature, but it drives me to get locked into MS world.

 

Get deep breath and waiting for release...

igorz 04/07/2010 - 14:44

ASP.NET MVC 2 has validation architecture that support both server-side and client-side validation. ScottGu describes in details how to get validation works in his post ASP.NET MVC 2: Model Validation. The best feature in client-side architecture is that you may use alternative java scripts validation libraries like jQuery validation. There is a steps to get client-side validation works using jQuery validation plug-in:

igorz 17/05/2010 - 16:24

ASP.NET MVC 2 Released about month ago.

This release full of new features, that make ASP.NET MVC really useful, out of competition web application framework.

 

Some of the new features and capabilities include:

igorz 12/04/2010 - 09:31

If you haven't decided yet which validation framework to use with your ASP.NET MVC application then check out Fluent Validation

 

"A small validation library for .NET that uses a fluent interface and lambda expressions for building validation rules for your business objects."

 

P.S. lambda expressions seems to be only language in the future. :)

igorz 17/02/2010 - 17:16
Syndicate content