Hi,i want to start my projent using ASP.Net, but when i open, it keeps on saying: "The Web Server repoted the following error when trying to create or open the web project located at the following URL:'http://localhost/webservice1'.'H TTP/101 500 server Error'." the web server is running, i tried to reinstal it again and re-install the Visual studio.NET again.but still the same.
web sever problem
Collapse
X
-
I'd check to see what version of ASP.NET the server is running and make sure it matches the ASP.NET framework version that Visual Studio is expecting the server to be running.Originally posted by makoyatHi,i want to start my projent using ASP.Net, but when i open, it keeps on saying: "The Web Server repoted the following error when trying to create or open the web project located at the following URL:'http://localhost/webservice1'.'H TTP/101 500 server Error'." the web server is running, i tried to reinstal it again and re-install the Visual studio.NET again.but still the same.
I ran into the same problem a while back where I did a fresh install of windows, IIS, and Visual Studio.
What I found was that when Windows did all of its updates it installed the .NET Framework2.0 but didn't update the ASPNET user.
What I'd suggest is the following:
on command line go to %windowsDirecto ry%\Microsoft.N ET\Framework\v2 .0.50727
and type: aspnet_regiis -i
This will reinstall the .Net Framework 2.0 and recreate the ASPNET user to match it.
After you do this I would recommend restarting the computer just to be on the safe side.
Hopefully this will fix your problems.
-Frinny -
Originally posted by FrinavaleI'd check to see what version of ASP.NET the server is running and make sure it matches the ASP.NET framework version that Visual Studio is expecting the server to be running.
I ran into the same problem a while back where I did a fresh install of windows, IIS, and Visual Studio.
What I found was that when Windows did all of its updates it installed the .NET Framework2.0 but didn't update the ASPNET user.
What I'd suggest is the following:
on command line go to %windowsDirecto ry%\Microsoft.N ET\Framework\v2 .0.50727
and type: aspnet_regiis -i
This will reinstall the .Net Framework 2.0 and recreate the ASPNET user to match it.
After you do this I would recommend restarting the computer just to be on the safe side.
Hopefully this will fix your problems.
-Frinny
thanx Frinny, but when i did that it says: eroor bla bla bla 000000 application fail,'cannot read the memory'.Comment
-
Hmmm, that sounds interesting.Originally posted by makoyatthanx Frinny, but when i did that it says: eroor bla bla bla 000000 application fail,'cannot read the memory'.
Try downloading the .NET Framework again.
After you install it check if your still getting the Internal 500 error.
If you are try running the aspnet_regiis utility again.
I've never encountered this error before.
-FrinnyComment
-
I ran into this before. Make sure you have IIS installed before you install .NET. For some reason, when you do it the other way, IIS won't recognize aspnet, even after running the _regis utility.Originally posted by FrinavaleHmmm, that sounds interesting.
Try downloading the .NET Framework again.
After you install it check if your still getting the Internal 500 error.
If you are try running the aspnet_regiis utility again.
I've never encountered this error before.
-FrinnyComment
-
Thanks for the tip!Originally posted by tsgomezI ran into this before. Make sure you have IIS installed before you install .NET. For some reason, when you do it the other way, IIS won't recognize aspnet, even after running the _regis utility.
I'll keep that in mind next time I'm installing.
-FrinnyComment
Comment