This was just a page in the book that verifies that .NET is working on my PC,
"Nick Malik" wrote:
> It's hard to respond to this... I just don't see a lot of folks writing code
> that is embedded in the web page.
>
> Have you looked at using WebMatrix?
>
http://www.asp.net/webmatrix/default.aspx?tabIndex=4&tabId=46 >
> The good folks at asp.net may be able to provide tools and techniques that
> can help you.
>
> --- Nick
>
> "mscertified" <rupert@tigerlily.com> wrote in message
> news:C1D42388-A3C8-410C-94F0-649846C33E7B@microsoft.com...
> > I just started working thru a book on ASP.NET and am trying to display
> their
> > Hello World page. Below is the page.
> > When I attempt to display it with IE, I get an error on line 23, 'runtime
> > error, expected ';'. Any clues?
> >
> > <%@ Page Language="VB" %>
> >
> > <html>
> > <head>
> > <title>Simple test ASP.NET page</title>
> > </head>
> > <body>
> > <form runat="server">
> > <h2>A Simple ASP.NET Page</h2>
> > <p>Enter your name in the box below, then click the button:</p>
> > <p>
> > <asp:TextBox id="txtNameBox" runat="server" />
> > <asp:Button id="btnSubmit" onclick="btnSubmit_Click"
> > runat="server" Text="Click Here!" />
> > </p>
> > <p>
> > <asp:Label id="lblMessageLabel" runat="server" />
> > </p>
> > </form>
> > </body>
> > </html>
> >
> > <script runat="server">
> > Sub btnSubmit_Click(sender As Object, e As EventArgs)
> > lblMessageLabel.Text = "Hello " & txtNameBox.Text
> > End Sub
> > </script>
>
>