12.1 Comments/Troubleshooting
The ASP.NET equivalents of most classic ASP intrinsic objects are
returned by properties of the ASP.NET Page class.
These properties are shown in Table 12-1.
listing as the basis for most examples. Unless otherwise noted, each
example will consist of just the Page_Load event handler for that
particular example. Any displayed output messages or return values
will be shown as the Text property of the ASP.NET Label control named
Message or displayed by calling Response.Write:
<%@ Page Language="vb" %>
<html>
<head>
<script runat="server">
Sub Page_Load( )
'Example code will go here
End Sub
</script>
</head>
<body>
<asp:label id="Message" runat="server"/>
</body>
</html>
