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.

Create a Web Forms application

Create a Web Forms application

From the course: Learning ASP.NET

Start my 1-month free trial

Create a Web Forms application

- [Instructor] Let's get back to Visual Studio so we can gain some hands-on experience with web forms. Under the file menu, select new project. Then select the ASP.NET web application template for the .NET framework. I'll name the project WebFormsApplication and we'll be adding it to our existing Visual Studio solution so go ahead and select that from the drop down, then click OK. On this screen, I'll pick the project template for our application, which is web forms. Go ahead and click OK. And we'll give it a little time to create the project. What I now have is a functioning web forms application that will Visual Studio built for us. Let's start exploring its contents. The solution explorer window is where we can view and manage files for our project. These are the initial files and folders that have been created for us. The Default.aspx file at the root is what typically appears when you run your application in a browser. Double-click to open it. What you see is the source view of…

Contents