[Mono-list] ASP.Net only partially working
Alan Knowles
alan@akbkhome.com
Fri, 07 Jan 2005 15:22:31 +0800
>
></script>
><html>
><head>
><title runat="server" id="titleTag"/>
></head>
><body>
><p><% Response.Write("Hello World!") %></p>
>
>
you are missing a ';' should be
<p><% Response.Write("Hello World!"); %></p>
(the error message told you "; missing" )
Regards
Alan
><form runat="server">
> <asp:Button id="Button1" OnClick="Button1_Click" runat="server"
>Text="Button"/>
></form>
></body>
>
>
>