Summary/Quick Fix:
Make sure that the feature of IIS you require (e.g - ASP.NET for .aspx, ASP for .asp) is installed. You can check this under add/remove windows features.
More Information:
The development team at work has recently started using Vista and a common problem that has come up is that IIS7 returns "HTTP Error 404.3 - Not Found" when trying to access .aspx (ASP.NET) files on the local machine.
In most cases, the reason for receiving this error will be that IIS is missing a piece of functionality that is required to serve the page. By default, IIS comes with a very limited set of features (the is deliberate, and highlights the extensibility of the new architecture). However, this means that ASP.NET and ASP are not installed by default. You can fix this by highlighting the features you require under add/remove windows features. For .aspx files you will need to make sure ASP.NET is installed. For .asp files, it's just plain old ASP. If this doesn't fix your problem, then I suggest you start reading the lengthy causes and resolutions provided by the built-in .NET error page. :)
0 comments:
Post a Comment