Monday, March 10, 2014

Your First WebSite in asp.NET

Open Visual Studio.
Click New Button in file menu.
Then click on ASP.NET Empty Website


Then right click on the project name in the right side in solution explorer.
Then Click on add new item.

Then click on web form.

You will redirect to the following code :-

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
 
    </div>
    </form>
</body>
</html>

Add following sentence between the <div> </div> tag

"Hello World".

press ctrl+f5 to run the program.

No comments:

Post a Comment