Hi goboomer,
Take a look at this code:
Code:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" 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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<div><br />
<h1>Hello World</h1><br />
<p>Welcome to Beginning ASP.NET 3.5 on <%= DateTime.Now.ToString() %></p><br />
</div>
</div>
</form>
<p>
</p>
</body>
</html>
As you can see, all the angled brackets ( < and > ) have been converted to > and < This seems to indicate that you typed the code in *Design View* and not in Markup View. Before you type the relavant code, be sure to click the Source button at the bottom from the code window. That way, the code is no longer "escaped" and will be treated as actual code, not literal content.
Hope this helps,
Imar