S
Siv Hansen
I'm trying to learn asp.NET and bought Sams Teach yourself...
I've installed MS IIS and downloaded .NET framework 1.1
I've created a simple script, saved as first.aspx. the file looks like
this (not mine, Sam's)
<%@ Page Language="VB" %>
<script runat="server">
sub Page_Load(obj as object, e as eventargs)
lblMessage.Text = "Jeg forsøker å lære meg asp.NET"
end sub
</script>
<html><body>
<asp:Label id="lblMessage" runat="server" />
</body></html>
But even though I think this will produce an output string on page load
id doesn't. When I look at the source code I see the server-side script,
and my undeducated guess would be that the file is not compiled/parsed
at all. Did I miss any configuration of the IIS? Activation on .NET
framework?
Thanks
I've installed MS IIS and downloaded .NET framework 1.1
I've created a simple script, saved as first.aspx. the file looks like
this (not mine, Sam's)
<%@ Page Language="VB" %>
<script runat="server">
sub Page_Load(obj as object, e as eventargs)
lblMessage.Text = "Jeg forsøker å lære meg asp.NET"
end sub
</script>
<html><body>
<asp:Label id="lblMessage" runat="server" />
</body></html>
But even though I think this will produce an output string on page load
id doesn't. When I look at the source code I see the server-side script,
and my undeducated guess would be that the file is not compiled/parsed
at all. Did I miss any configuration of the IIS? Activation on .NET
framework?
Thanks