locked
iis issue RRS feed

  • Question

  • User35516501 posted

    i had my site working on iis  in the local network

    but then something happend and it stopped refreshing 

    so  i  was so tired that decided to fix this all from the beginning

    so i delet default web site and deleted all in wwwroot directory/.

    so now i have my web application i can deploy it to zip file

    and i can import from iis

    and i get an error 403 like i don't have permissiions to see this folder what should i do to run my website?

    Tuesday, July 30, 2013 6:17 AM

Answers

  • User-386954757 posted

    Hello,

    You can try with following step:

    Stop and start IIS

    There are two ways you can stop and restart IIS: from a DOS command line or from Windows.

    from a DOS command line

    To stop IIS, at the DOS command prompt, type,
    iisreset /stop
    To restart it, type
    iisreset /start
    .
    from Windows

    Click Start and point to Programs. Point to Administrative Tools, and then click Computer Management.
    Expand Services and Applications.
    Expand Internet Information Services.
    Right click Default Web Site, and select Stop or Start.

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Tuesday, July 30, 2013 7:10 AM

All replies

  • User-386954757 posted

    Hello,

    You can try with following step:

    Stop and start IIS

    There are two ways you can stop and restart IIS: from a DOS command line or from Windows.

    from a DOS command line

    To stop IIS, at the DOS command prompt, type,
    iisreset /stop
    To restart it, type
    iisreset /start
    .
    from Windows

    Click Start and point to Programs. Point to Administrative Tools, and then click Computer Management.
    Expand Services and Applications.
    Expand Internet Information Services.
    Right click Default Web Site, and select Stop or Start.

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Tuesday, July 30, 2013 7:10 AM
  • User-742633084 posted

    Besides what atulthummar has suggested, you can also try creating a new IIS web site and then use Visual Studio's "Publish Web" feature to deploy your ASP.NET web application into local IIS server (or remote IIS server via file share):

    How to: Deploy a Web Project Using One-Click Publish in Visual Studio
    http://msdn.microsoft.com/en-us/library/dd465337.aspx

    Visual Studio 2012 Web Publishing Improvements
    http://www.asp.net/visual-studio/overview/2012/visual-studio-2012-web-publishing-improvements

    Tuesday, August 6, 2013 11:13 PM