Answers for "how to host mvc application in iis"

0

how to host mvc application in iis

BY LOVE,
NOTE :  Publishe the code in a folder with all the similar steps then
        add these two lines of code in web.config file if you get this errors.
        i.e :
        HTTP Error 403.14 - Forbidden The Web server is 
        configured to not list the contents of this directory.
        
- Add the below code in your web.config file.       
 <system.webServer>
    <directoryBrowse enabled="true" />
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>
Posted by: Guest on July-16-2020

Code answers related to "how to host mvc application in iis"

Browse Popular Code Answers by Language