cannot get ASP.NET running with simple testfile

  • Thread starter Thread starter ernst
  • Start date Start date
E

ernst

Hello,
I cannot get ASP.NET running with a simple testfile
called "test.aspx". It contains the following lines:

<html>
<head>
<script language="vb" runat="server">
sub page_load()
meinLabel.text = "Hallo ASP.net Server funktioniert"
end sub
</script>
</head>
<body>
<h1>hier kommt's:<h1>
<form id="Form1" runat="server" />
<asp:label id="meinLabel" runat="server" />
</form>
</body>
<html>

my browser (IE 6.0) shows the line "hier kommt's:" but the
interesting rest is missing. Normal asp is working.

my Config: WIN XP prof SP1, Visual Studio 1.0, .NET
Framework SDK and all Components of IIS are installed.

who can help me?
Ernst
 
Make sure the folder containing your file is set up as a vroot in IIS
Manager, and that Script permissions are allowed.
 
....in a different way: deinstalling the .NET Framework and
installing it again. I've heard, when you install the IIS
after the .NET Framework, ASP.NET is not working
because of missing ISAPI Extensions.
ciao
Ernst
 
Back
Top