Sunday, May 24, 2015

ASP.NET MVC - Internet Application

In the New Project dialog box:
  • Open the Visual C# templates
  • Select the template ASP.NET MVC 4 Web Application
  • Set the project name to MvcDemo
  • Set the disk location to something like D:\MVC\MvcDemo
  • Click OK
When the New Project Dialog Box opens:



  • Select the Internet Application template
  • Select the Razor Engine
  • Select HTML5 Markup
  • Click OK
Visual Studio will create a project much like this:


 


No comments:

Using Authorization with Swagger in ASP.NET Core

 Create Solution like below LoginModel.cs using System.ComponentModel.DataAnnotations; namespace UsingAuthorizationWithSwagger.Models {     ...