July 31, 2004
How to install ASP.Net
ASP.Net runs from within IIS, I'm going to assume that IIS is already installed and configured. First, check to see if you already have the .NET Framework installed. The easiest was to do this is to look in add/remove programs for the Microsoft .NET Framework 1.1
Go to the location where the Framework is installed, probably located at C:\WINDOWS\Microsoft.NET\Framework. You will find your version of .NET, mine was v1.1.4322. If you don't have it installed, you can download it from here.
At the dos prompt run
%windir%\Microsoft.NET\Framework\ v1.1.4322\aspnet_regiis.exe -i
regsvr32 %windir%\Microsoft.NET\Framework\ v1.1.4322\aspnet_isapi.dll
(use the framework version you have, remember that mine was v1.1.4322)
Now create a test page. I called mine, time.aspx.
<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<h1>hello it is <% Response.Write(DateTime.Now.ToString()); %></h1>
</body>
</html>
And test it out by runing http://localhost/time.aspx
Viola .NET is installed.
It's Voila...lol
Anyway good job m8, you really helped me out on this one...
oh and almost forgot... in win xp sp2 you need to have the path to the asp_isapi.dll in quotes when you feed it to regsvr32....
Posted by: J. Korres at March 6, 2005 7:10 AMthanks it help me a lot.
Posted by: ritesh at May 10, 2007 2:58 PMFinally passed the test
Managing in light of McGregor's Theory X and Theory Y
CMMI
Kicking HIT Leadership Up a Notch
That's just some mumbo jumbo project management BS
Outcomes - The tactic to get to the strategy
Nurse Call, VOIP, and Wi-Fi: Its just cool when things come together!
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
August 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
November 2005
October 2005
September 2005
August 2005
June 2005
May 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
April 2004
March 2004
February 2004
January 2004
December 2003
November 2003
October 2003
Joel on Software
David Ross
Edward Prevost
Martin Fowler
The Health Care Blog
The Tales of Hoffman
The Business Word
Medical Rants
Christina's Considerations
Paul Levy
HIS Talk
Appropriate IT
Candid CIO
RSS feed




