« on: May 30, 2009, 01:20:14 AM »
Create a new aspx file ( extension should be .aspx )
You could use notepad, visual studio 2005, dreamweaver, ....
Put this code in the file:
<%@ Page Language="vb" %>
<% lblMessage.Text = "Hello World!" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<asp:Label ID="lblMessage" runat="server" Text="Label"></asp:Label>
</body>
</html>
XD