asp网站布署的问题?

image.png
这文件明明存在,确提示“无法显示页面,因为发生内部服务器错误。
无法显示页面,因为发生内部服务器错误。
image.png
这些文件明明存在,确加载不出来

下面是配置文件,这具体是哪里的问题?

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 
 
  <!-- appSettings网站信息配置-->
  <appSettings>
    <add key="Configpath" value="~/XmlConfig/webset.config" />
    <add key="DbPath" value="~/appta/DtCms.aspx"/>
    <!--<add key="DbPath" value="~/App_Data/DtCms.mdb" />-->
  </appSettings>
  <!-- 数据库连接字符串-->
  <connectionStrings>
    <add name="ConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" />
  </connectionStrings>
  <system.web>
    
    <!-- 
            设置 compilation debug="true" 可将调试符号插入
            已编译的页面中。但由于这会
            影响性能,因此只在开发过程中将此值 
            设置为 true。
        -->
 
    <compilation debug="true">
      <buildProviders>
        <add extension=".html" type="System.Web.Compilation.PageBuildProvider" />
        <add extension=".xml" type="System.Web.Compilation.PageBuildProvider" />
      </buildProviders>
    </compilation>
    <!--
            通过 <authentication> 节可以配置 ASP.NET 用来 
            识别进入用户的
            安全身份验证模式。 
        -->
    <authentication mode="Windows" />    
        <customErrors mode="RemoteOnly" defaultRedirect="404.htm">
            <error statusCode="403" redirect="403.htm" />
            <error statusCode="404" redirect="404.htm" />
        </customErrors>
      
    <httpRuntime maxRequestLength="20480" executionTimeout="600" />
    <pages>
      <controls>
        <add tagPrefix="FCKeditorV2" assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" />
        <add tagPrefix="webdiyer" assembly="AspNetPager" namespace="Wuqi.Webdiyer" />
        <!--新添加的FCK DLL-->
      </controls>
    </pages>
  </system.web>
    <system.webServer>
        <staticContent>
            <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
        </staticContent>
    </system.webServer>
  
  
</configuration>
阅读 1.7k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进