-1

In Windows Server 2012 created simple Asp.Net using Visual studio 2012. Then I have deployed it in IIS 8.0. In IIS manger browse the deployed simple Asp.Net application, it was working fine when the sample Visual studio project is open. After closing the Visual studio project then we browse it from IIS manager option, the application was not working.

Please provide the solution if you know about it.

Note: The page can't be displayed error be occur.

TylerH
  • 20,799
  • 66
  • 75
  • 101
Parthi
  • 361
  • 6
  • 21

1 Answers1

2

Few Things you need to check for hosting in IIS.

  1. Application Pool frameWork : Ensure the correct framwork is installed V(4.0.30319).

    Navigate to C:\Windows\Microsoft.NET\Framework\v4.0.30319 directory

    Open command window here (CTRL + SHIFT + rightClick)

    Type in the Command prompt aspnet_regiis -i to register the latest framework.

  2. Physical path Security/permission : IIS -> (select your VD) -> Manage Application-> Advanced settings -> Physical path credential -> Choose connect as Specific user -> provide the systems username and password.

  3. Add read/write permission for IIS_IUSERS object

Community
  • 1
  • 1
sudhansu63
  • 6,025
  • 4
  • 39
  • 52