Installing .Net Framework on XP Pro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I purchased a book ASP.NET for dummies. I tried to run some examples from it on my XP Pro virtual server and it seems like it doesn't reconize some of the commands, such as <asp:label .../> or <asp:hyperlink...></asp:hyperlink>. I am assuming that this is happening because I do not properly have .net framework installed on my computer. The confusing part is that I downloaded and installed the .Net Framework Redistributer 1.1 and .Net Framework SDK 1.1. Is there perhaps something that I am suppose to enable to allow my XP Pro server that I set up on my computer to use asp.net? I ask this because I develope in front page 2003 and when I click the preview button there the hyperlinks and label are displayer perfectly, where as they aren't if I go to my virtual server though the browser. Thank you

Devin
 
Open a command prompt and navigate to the .NET Directory. Type in the
following:

aspnet_regiis /i

That will register .NET with IIS.

NOTE that you have to install IIS first, as it is not installed, by default,
on XP Pro. If you did this second, that is why ASP.NET is not registered.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
Devin said:
I purchased a book ASP.NET for dummies. I tried to run some examples from
it on my XP Pro virtual server and it seems like it doesn't reconize some of
the commands, such as <asp:label .../> or
<asp:hyperlink...></asp:hyperlink>. I am assuming that this is happening
because I do not properly have .net framework installed on my computer. The
confusing part is that I downloaded and installed the .Net Framework
Redistributer 1.1 and .Net Framework SDK 1.1. Is there perhaps something
that I am suppose to enable to allow my XP Pro server that I set up on my
computer to use asp.net? I ask this because I develope in front page 2003
and when I click the preview button there the hyperlinks and label are
displayer perfectly, where as they aren't if I go to my virtual server
though the browser. Thank you.
 
Back
Top