簡體   English   中英

MVC asp.net應用程序發布::錯誤:: 403-禁止:訪問被拒絕

[英]MVC asp.net application published :: Error :: 403 - Forbidden: Access is denied

我嘗試在MVC asp.net網站上發布我的網站,但出現錯誤:

錯誤:: 403-禁止訪問:拒絕訪問。 您無權使用您提供的憑據查看此目錄或頁面。

我也在我的webconfig中嘗試了很多東西。

<configuration> 
  <configSections> 
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> 
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> 
  </configSections> 
  <appSettings> 
<add key="webpages:Version" value="3.0.0.0" /> 
<add key="webpages:Enabled" value="false" /> 
<add key="ClientValidationEnabled" value="true" /> 
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> 
</appSettings> 
<system.web> 
<compilation debug="true" targetFramework="4.6.1" /> 
<httpRuntime targetFramework="4.6.1" /> 
<httpModules> 
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" /> 
</httpModules> 
<authentication mode="Forms"> 
  <forms loginUrl="Account/Login"></forms> 
</authentication> 
<roleManager enabled="true" defaultProvider="MyProvider"> 
  <providers> 
    <clear /> 
    <add name="MyProvider" type="CampusRiver_Hospital.MyRoleProvider" /> 
  </providers> 
</roleManager> 
</system.web> 
 <runtime> 
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
  <dependentAssembly> 
    <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> 
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> 
  </dependentAssembly> 
  <dependentAssembly> 
    <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> 
    <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> 
   </dependentAssembly> 
   <dependentAssembly> 
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> 
    <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> 
    </dependentAssembly> 
    </assemblyBinding> 
  </runtime> 
  <system.codedom> 
 <compilers> 
  <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" /> 
  <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" /> 
   </compilers> 
 </system.codedom> 
<system.webServer> 
 <validation validateIntegratedModeConfiguration="false" /> 
 <modules runAllManagedModulesForAllRequests="true"></modules> 
 <handlers> 
  <remove name="UrlRoutingHandler" /> 
 </handlers> 
 </system.webServer> 
 <entityFramework> 
 <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> 
  <parameters> 
    <parameter value="mssqllocaldb" /> 
   </parameters> 
  </defaultConnectionFactory> 
 <providers> 
  <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> 
  </providers> 
  </entityFramework> 
  <connectionStrings> 

   <add name="HospitalContext" connectionString="metadata=res://*/Models.HospitalContext.csdl|res://*/Models.HospitalContext.ssdl|res://*/Models.HospitalContext.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=****;initial catalog=****;user id=*****;password=*****;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> 
  </connectionStrings> 
  <location path="."> 
   <system.web> 
   <authorization> 
    <allow users="?" /> 
   </authorization> 
   </system.web> 
  </location> 
 </configuration>

運行IIS應用程序池的憑據無權訪問已部署應用程序的文件夾。 嘗試在此處提供具有適當訪問權限的有效憑證。

應用程序池->選擇您的池->高級設置->流程模型->身份

並在此處設置有效的身份。

謝謝,我聯系了管理員,並設置了用戶名和密碼。 而且有效。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM