Tuesday, April 22, 2014

ASP.NET MVC Framework


 ASP.NET MVC Framework


ASP.NET MVC Frameworks
Developer(s)             Microsof t
Stable release             5.1 / January 17, 2014
Development status      Active
Written in                    C#, VB.NET[1]
Operating system        Cross-platf orm Platform .NET Framework, Mono
Type                           Web application f ramework
License                       Apache License 2.0
Website                       www.asp.net/mvc/

The ASP.NET MVC is an open source web application f ramework that implements the model–
view–controller (MVC) pattern.


The source code now resides on CodePlex. ASP.NET Web Forms was not included in this initiative
f or various reasons.[6]

Release history

Date                                     Version
10 December 2007 ASP.NET MVC CTP
13 March 2009 ASP.NET MVC 1.0[7]
16 December 2009 ASP.NET MVC 2 RC[8]
4 February 2010 ASP.NET MVC 2 RC 2[9]
10 March 2010 ASP.NET MVC 2[10]
6 October 2010 ASP.NET MVC 3 Beta[11]
9 November 2010 ASP.NET MVC 3 RC[11]
10 December 2010 ASP.NET MVC 3 RC 2[12]
13 January 2011 ASP.NET MVC 3[13]
20 September 2011 ASP.NET MVC 4 Developer Preview[14]
15 February 2012 ASP.NET MVC 4 Beta[15]
31 May 2012 ASP.NET MVC 4 RC[16]
15 August 2012 ASP.NET MVC 4[17]
30 May 2013 ASP.NET MVC 4 4.0.30506.0 [18]
26 June 2013 ASP.NET MVC 5 Preview [19]
23 August 2013 ASP.NET MVC 5 RC 1[20]
17 October 2013 ASP.NET MVC 5[20]
17 January 2014 ASP.NET MVC 5.1[20]
10 February 2014 ASP.NET MVC 5.1.1[20]
4 April 2014 ASP.NET MVC 5.1.2[20]

View engines


Razor :- http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx
ASPX :- http://aspnet.codeplex.com/
Spark :- http://sparkviewengine.com/
NHaml :- http://code.google.com/p/nhaml/
NDjango :- http://ndjango.org/index.php?title=NDjango_Home
Hasic :- http://www.codeproject.com/Articles/467850/ASP-NET-MVC-view-engines
Brail :- http://mvccontrib.codeplex.com/wikipage?title=Brail&ProjectName=mvccontrib
Bellevue :- http://www.ope.ag/Bellevue/Page/intro
SharpTiles :- http://www.sharptiles.org/
String Template :-  http://code.google.com/p/string-template-view-engine-mvc/
Wing Beats :-  http://wingbeats.codeplex.com/
SharpDOM :- http://sharpdom.codeplex.com/ 

 References :-
     MSDN
     ASP.NET Site
     Various Internet Site
      Wikipedia   

   

Sunday, April 13, 2014

ASP.NET MVC5 within Visual Studio 2012

So this article we will cover how to go about creating and using ASP.NET MVC5 applications within Visual Studio 2012 .

In November of this year, the .NET team released the ASP.NET and Web Tools 2013.1 Update for Visual Studio 2012. I wish I could say the steps necessary to integrate MVC5 into Visual Studio 2012 were more complicated than simply downloading this, but they aren’t.
You can download the update itself from the link provided below:

Download the ASP.NET and Web Tools 2013.1 Update for Visual Studio 2012 here!

You’ll find that after installing the update and restarting Visual Studio 2012, you’ll be able to create a new ASP.NET MVC5 application through Visual Studio 2012 :

After installing the update, you'll see that MVC5 is now available in Visual Studio 2012.
After installing the update, you’ll see that MVC5 is now available in Visual Studio 2012. 
The update not only provides the necessary foundation for creating MVC5 applications, but it features the following additional improvements as well:
  • Scaffolding
  • ASP.NET Identity
  • One ASP.NET
  • Bootstrap
  • Attribute Routing
  • Filter Overrides
So if you are a bit hesitant to give Visual Studio 2013 a try, but you want to play around with some of the newer features and development templates that it provides, I would recommend downloading and checking out this update.
For more Details:

How to Upgrade an ASP.NET MVC 4 and Web API Project to ASP.NET MVC 5 and Web API 2  

Click here (http://www.asp.net/mvc/tutorials/mvc-5/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2)



Refrence:
1. http://www.asp.net

2.  http://www.codeproject.com

Array In Ascending Order Using VB.net


Dim strArray As String() = New String() {"D", "E", "A", "B", "Z", "X"}

        Dim query = _
            From i As String In strArray _
            Order By i Ascending _
            Select i

        For Each value As String In query
            Console.Write(value & " ")
        Next


Output:
A B D E X Z