I had a few "issues" with my hard drive and ended up replacing it. One of
the side-effects was my drive letters changed. I checked VS .Net 2003 after
the drive restore and it all worked until I tried to create an asp.net app.
Then I got:
Cannot find the components for communicating with the FrontPage server
extensions
So, I tried uninstalling VS .Net. It crashed. But after many hours of
convincing I managed to do a re-install to a new location. Same error. I
tested my web server with FrontPage 2003. Worked. Tried reinstalling the
.Net Framework. Removed and reinstalled IIS. Remapped the .Net extensions
in IIS (sigh!).
Now I'm right back to where I started. I've reinstalled everything. And
I'm back to the same error. I'm getting no errors in the event logs, but
the IIS log:
#Software: Microsoft Internet Information Services 5.1
#Version: 1.0
#Date: 2004-02-08 04:18:06
#Fields: date time c-ip cs-username s-sitename s-computername s-ip s-port
cs-method cs-uri-stem cs-uri-query sc-status
2004-02-08 04:18:06 127.0.0.1 - W3SVC1 CODETRAP 127.0.0.1 80 GET
/TEST/get_aspx_ver.aspx - 500
2004-02-08 04:18:06 127.0.0.1 - W3SVC1 CODETRAP 127.0.0.1 80 GET
/TEST/get_aspx_ver.aspx - 500
when trying to create a new project. I've added a blank get_aspx_ver.aspx
to the root.
Help!
Mark Winder - 08 Feb 2004 06:38 GMT
I've messed with permissions and as often or not I get the same IIS Log
errors but with a 404 error for get_aspx_ver.aspx. I've seen some
references to adding:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
string url = Request.ServerVariables["URL"].ToString();
if(url.IndexOf("get_aspx_ver.aspx") >= 0)
Response.End();
}
to the global.asax, but I don't see how I can do anything before the project
is even created...
> I had a few "issues" with my hard drive and ended up replacing it. One of
> the side-effects was my drive letters changed. I checked VS .Net 2003 after
[quoted text clipped - 28 lines]
>
> Help!