I tried to run a simple ASP.NET application and when I tried to compile and run the project I got this error message: Error While Trying to Run Project: Unable to Start Debugging on Web Server.
Then when I go to the Event Viewer I am getting this message in the Application Log: "aspnet_wp.exe could not be launched because the username and/or password in the processModel of the config file are invalid."
When it talks about the config file, is it referring to the web.config file located within the project? When I opened that file I looked at this information:
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;user id=sa;password= "
cookieless="false"
timeout="20"
/>
I am running Windows 2000 Server with IIS 5.0. I have no problems at all running regular ASP pages, but can't seem to get anything going on the ASP.NET pages. Please help...
Then when I go to the Event Viewer I am getting this message in the Application Log: "aspnet_wp.exe could not be launched because the username and/or password in the processModel of the config file are invalid."
When it talks about the config file, is it referring to the web.config file located within the project? When I opened that file I looked at this information:
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;user id=sa;password= "
cookieless="false"
timeout="20"
/>
I am running Windows 2000 Server with IIS 5.0. I have no problems at all running regular ASP pages, but can't seem to get anything going on the ASP.NET pages. Please help...