当前位置: 代码迷 >> ASP.NET >> 啊不会上传到空间。
  详细解决方案

啊不会上传到空间。

热度:8248   发布时间:2013-02-25 00:00:00.0
求助啊。。不会上传到空间。。
在IIS本地浏览,一切正常。NET是4.0。
上传到虚拟主机后,虚拟主机NET版本切换成3.5或2.0时,显示500错误。
切换成4.0时,显示404错误。

网站里的静态网页可以浏览。

Web.config
XML code
<?xml version="1.0" encoding="UTF-8"?><configuration>    <appSettings />    <connectionStrings>    <!--数据库连接字符串-->          </connectionStrings>    <system.web>        <compilation targetFramework="4.0">            <assemblies>                <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />                <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />                <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /></assemblies></compilation>        <!--            通过 <authentication> 节可以配置            安全身份验证模式,ASP.NET             使用该模式来识别来访用户身份。         -->        <customErrors mode="None"/>    <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">      <error statusCode="403" redirect="Error.aspx?type=403" />      <error statusCode="404" redirect="Error.aspx?type=404" />      <error statusCode="500" redirect="Error.aspx?type=500" />    </customErrors>        </system.web>  <system.web>    <siteMap defaultProvider="XmlSiteMapProvider" enabled="true">      <providers>        <add name="XmlSiteMapProvider" description="SiteMap provider which reads in .sitemap XML files." type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" siteMapFile="web.sitemap" />      </providers>    </siteMap>  </system.web></configuration>


------解决方案--------------------------------------------------------
问一下服务器商
  相关解决方案