Mr^B:Looks as if IIS isn't shutting down to let aspnet_regiis do its installation work.
Can you try manually shutting down IIS?
CMD Prompt -> IISRESET /STOP
And then try installing it, then restart IIS (CMD -> IISRESET /START)
If IIS isn't shutting down properly, check the Event Viewer and see if there's any error messages in there that make any sense.
I tryed this. the service stopped and started properly.
C:\Documents and Settings\chandra_p>IISRESET /STOP
Attempting stop...
Internet services successfully stopped
C:\Documents and Settings\chandra_p>IISRESET /START
Attempting start...
Internet services successfully started
i checked the events log, no error reported. I again did aspnet_regiis -i and it worked fine with no problems.
C:\Documents and Settings\chandra_p>cd c:\windows\microsoft.net\framework\v2.0.50727\
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspnet_regiis -i
Start installing ASP.NET (2.0.50727).
........
Finished installing ASP.NET (2.0.50727).
Then i went to the MMC and went to the websites. I right clicked the postinfo.html and selected browse and the files showed up fine on the localhost. (this file is by default in the wwwroot folder). i created a test.aspx file in c# express and right clicked and selected browse. the browse opened but it looked like as if its gone in an endless loop.
test.aspx
************************
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
************************
Bottom line, none of the aspx files runs. I have so far done all that is required to get my aspx files running but no success yet. Do i have to change some config file or something?
"Its not that i took that much time, its just that it took me that much time" Me, 2005, During a production briefing.