DotNetJaps

For the ASP.NET,By the ASP.NET and Of the ASP.NET

Sponsors

News


My Another Blog

February 2008 - Posts

ASP.NET MVC Framework Link collection

Microsoft will release it's Model view controller base framework for asp.net. In this user will have built in support for model view controller architecture.

Here are the some interesting collection of links related to asp.net MVC Framework..

ASP.NET MVC Introduction:

http://weblogs.asp.net/scottgu/archive/2007/10/14/asp-net-mvc-framework.aspx

http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx

Download ASP.NET MVC Toolkit

http://www.code-magazine.com/Article.aspx?quickid=070173

http://www.pnpguidance.net/Category/ASPNETMVCFramework.aspx

http://geekswithblogs.net/AzamSharp/archive/2008/01/29/119070.aspx

http://geekswithblogs.net/AzamSharp/archive/2008/01/30/119105.aspx

 

ASP. NET MVC Video:

http://www.hanselman.com/blog/ScottGuMVCPresentationAndScottHaScreencastFromALTNETConference.aspx

ASP.NET MVC Road Map:

http://weblogs.asp.net/scottgu/archive/2008/02/12/asp-net-mvc-framework-road-map-update.aspx

ASP.NET URL Rewriting:

http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx

Passing view data from controllers to views

http://weblogs.asp.net/scottgu/archive/2007/12/06/asp-net-mvc-framework-part-3-passing-viewdata-from-controllers-to-views.aspx

Handling from edit and post scenarios:

http://weblogs.asp.net/scottgu/archive/2007/12/09/asp-net-mvc-framework-part-4-handling-form-edit-and-post-scenarios.aspx

ASP.NET MVC Ajax:

http://www.nikhilk.net/Ajax-MVC.aspx

Using JQuery with ASP.NET MVC:

http://www.chadmyers.com/Blog/archive/2007/12/13/using-jquery-with-asp.net-mvc.aspx

Rss Feed with ASP.NET MVC Framework:

http://blogs.msdn.com/brada/archive/2007/11/14/rss-feed-with-the-new-asp-net-mvc-framework.aspx

ASP.Net MVC Framework - Create your own IControllerFactory and use Spring.Net for DI :

http://weblogs.asp.net/fredriknormen/archive/2007/11/17/asp-net-mvc-framework-create-your-own-icontrollerfactory-and-use-spring-net.aspx

Dangers of New ASP.NET Framework:

http://blog.madskristensen.dk/post/Dangers-of-the-new-ASPNET-MVC-framework.aspx

ASP.NET MVC Framework and Composite Web Application Block ( CWAB ):

http://www.pnpguidance.net/Post/ASPNETMVCFrameworkCompositeWebApplicationBlockCWAB.aspx

ASP.NET Link Collection:

http://codeclimber.net.nz/archive/2008/01/28/ASP.NET-MVC-Link-collection.aspx

Infosys Guys are blogging about .NET

Infosys is India's most well know company at we all know.Recently I have visited the Infosys and I found there blogs about Microsoft Technologies. I had read some entries and I found lots of things to learn.

here is the link for there blogs about Microsoft technology.

http://infosysblogs.com/microsoft/net_20/

GetYear Function in Java Script is not working properly in firefox

Hi Folks,

I have found that some times in firefox getyear function is not working properly. For example.We define a date value with following.

var dtTo = new Date("11-Feb-2007");

Now if you do alert like

Alert(dtTo.getYear());

But in firefox year is displaying like 107.So to fix this issue. I have used getFullYear function like

Alert(dtTo.getFullYear());

And It's working fine...

More Posts