ASP.Net 을 하실때

아래와 같은 오류가 났을때 처리법입니다..
Failed to execute request because the App-Domain could not be created. Error: 0x80131902


  1. With a command window, get to the latest version of .net under
  2. C:\Windows\Microsoft.Net\Framework\
  3. Now run the following command: "net stop w3svc" to stop web services.
  4. Then use "aspnet_regiis.exe -ua" to uninstall all instances of ASP.NET from IIS. (제거 합니다.)
  5. Follow with "aspnet_regiis.exe -i" to install ASP.NET into IIS. (다시 설치 합니다.)
  6. Now restart web services with "net start w3svc".


이렇게 해주시면 됩니다. ^^

+ Recent posts