Monday, January 6, 2020

How to create asp.net web application in visual studio?

Open the visual studio and click on the create new project.

Click on the ok button then you see the below window

Select the Empty then click ok now your web app project successfully created

Here is solution explorer of your project here you create your web pages
Now add web form in your project and add following code in your web page and run you project by press the F5

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Asp.net Web App</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <h2>
                Welcome to asp.net!
            </h2>
        </div>
    </form>
</body>
</html>



What is ASP.Net?

Featured Post

What is JavaScript? What is the role of JavaScript engine?

  The JavaScript is a Programming language that is used for converting static web pages to interactive and dynamic web pages. A JavaScript e...