The code is not working

G

Gandalf

I download the framework and install the IIS server 5.1, But when I
copy the code that supposed to print me 'hello world' from my manual
it didn't work. It showed me the page, but ignored the '.net' script.
What could be the reason?
Does my server version support asp.net?


This is the code I copy:
<%@Page Language="C#"%>

<script runat="server">
void Page_Load(object sender, EventArgs e) {
myLabel.Text = "Hello World!";
}
</script>

<html>
<head>
<title>My first ASP.NET page</title>
</head>

<body>
<asp:Label runat="server" id="myLabel"></asp:Label>
</body>
</html>

thanks
 
A

Alexey Smirnov

I download the framework and install the IIS server 5.1, But when I
copy the code that supposed to print me 'hello world' from my manual
it didn't work. It showed me the page, but ignored the '.net' script.
What could be the reason?
Does my server version support asp.net?

This is the code I copy:
<%@Page Language="C#"%>

<script runat="server">
void Page_Load(object sender, EventArgs e) {
myLabel.Text = "Hello World!";
}
</script>

<html>
<head>
<title>My first ASP.NET page</title>
</head>

<body>
<asp:Label runat="server" id="myLabel"></asp:Label>
</body>
</html>

thanks

Execute C:\WINDOWS\Microsoft.NET\Framework
\v2.0.50727\aspnet_regiis.aspx -i

That should register the ASP.NET with IIS.

http://support.microsoft.com/kb/306005
 
L

Larry Bud

I only have this two 'version' directories:
v1.1.4322
v1.0.3705

and none of them contains the file aspnet_regiis.aspx- Hide quoted text -

- Show quoted text -

I recommend you install .Net framework 3.0.
 
J

Juan T. Llibre

re:
!> I recommend you install .Net framework 3.0.

I hope you meant *.Net Framework 2.0*, and not 3.0,
since 3.0 has nothing which an ASP.NET developer needs.




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top