From the course: Learning ASP.NET

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Run and debug a web application

Run and debug a web application

From the course: Learning ASP.NET

Start my 1-month free trial

Run and debug a web application

- [Instructor] Let's get started with Visual Studio to create our first application. Open the File menu and select New, Project. Then, expand the Visual C# on the left, and select Web. This will show you the project templates available for building ASP.NET applications. I'll select the ASP.NET Web Application template for the .NET Framework. And I'll name it AspNetApplication. Then, pick a location on your machine where you'd like to save the source code. Next is the solution, which how Visual Studio organizes one or more related projects. I'm going to name it Tutorial.AspNet, because it'll house all the projects will be using for this course. We can keep the default option here for framework. This dropdown would show the versions of the .NET Framework that are available, and you'll want to pick the latest version. Then, go ahea and click OK. You'll now see a dialog where you can select the type of application you'll build with ASP.NET. I'm going to select MVC, and then click OK…

Contents