Which Visual Studio 2013 project template should I select for the most basic web site?

I am about to create a web site that will be quite basic in that it will be just one page with a google map on it, and a few input checkboxes. It will have jQuery behind it, but I have no need for Bootstrap or MVC or Authentication or a database for this project. I want to use VS 2013 for the editor niceties and the ASP.NET framework it will provide (web.config, etc.), but for the most part it will be a bare bones HTML5/CSS/jQuery site.

So what is the most appropriate project template (C#) for this?

Upvotes: 3

Views: 8120

Answers (1)

Habib
Habib

Reputation: 223247

Just select an "Empty" template. Later you can build your own site like you want.

See: Creating ASP.NET Web Projects in Visual Studio 2013

Empty Template

The Empty template provides the bare minimum folders and files for an ASP.NET web site, such as a project file (.csproj or .vbproj) and a Web.config file. You can add support for Web Forms, MVC, and/or Web API by using the check boxes under the Add folders and core references for: label.

Upvotes: 10

Related Questions