How to add an aspx page into a project?

SteveHi

New member
Joined
Sep 8, 2014
Messages
3
Programming Experience
Beginner
Hello

I am new to Visual Studio and ASP.NET.

I have a 'new user' web form that inserts field form data into a MDB. I am now trying to use a response.redirect to tell the user that his registration was successful. The file that will say 'Your registration was successful' will be an aspx page but how to I create it? Do I create it from Solution Explorer?

solutionExplorer.jpg

If I click on 'Add' as in my screenshot, which item do I select, please? And do I just use normal HTML to tell the user that his registration was successful?

Many thanks.
 
The technology you're using in that application is called Web Forms because every page is a web form, just as every page in a Windows Forms app is a Windows form. In Windows Forms projects you use Add -> Windows Form and in a Web Forms project you use Add -> Web Form.
 
Back
Top