遇到同样的问题 升级运行后 登录页面不显示了
以下是Web.config的配置 没有问题啊
- <?xml version="1.0"?>
- <configuration>
- <configSections>
- <section name="ExtAspNet" type="ExtAspNet.ConfigSection, ExtAspNet" requirePermission="false"/>
- <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic"/>
- </configSections>
- <appSettings/>
- <connectionStrings>
- <clear/>
- <add name="Default" connectionString="Password=123456;Persist Security Info=True;User ID=sa;Initial Catalog=TransportManagesDB;Data Source=HCKJCM"/>
- </connectionStrings>
- <!-- 可用的配置项(这里列的都是默认值): Language="zh_CN" AjaxTimeout="60" EnableAjax="true" Theme="blue" FormMessageTarget="qtip" FormOffsetRight="20" FormLabelWidth="100" FormLabelSeparator=":" IconBasePath="~/icon" EnableAjaxLoading="true" AjaxLoadingType="default" -->
- <ExtAspNet EnableBigFont="true" DebugMode="true" AjaxLoadingType="Default"/>
- <SubSonicService defaultProvider="Default">
- <providers>
- <clear/>
- <add name="Default" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="Default" generatedNamespace="AppBox"/>
- </providers>
- </SubSonicService>
- <system.web>
- <pages>
- <controls>
- <add assembly="ExtAspNet" namespace="ExtAspNet" tagPrefix="ext"/>
- </controls>
- </pages>
- <httpModules>
- <add name="ExtAspNetScriptModule" type="ExtAspNet.ScriptModule, ExtAspNet"/>
- </httpModules>
- <httpHandlers>
- <add verb="GET" path="res.axd" type="ExtAspNet.ResourceHandler, ExtAspNet"/>
- </httpHandlers>
- <compilation debug="true">
- <assemblies>
- <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>
- <customErrors mode="Off"/>
- <!--
- 通过 <authentication> 节可以配置 ASP.NET 用来识别进入用户的安全身份验证模式。
- -->
- <authentication mode="Forms">
- <forms name=".ASPXFORMSAUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/"/>
- </authentication>
- <authorization>
- <deny users="?"/>
- </authorization>
- </system.web>
- <location path="icon">
- <system.web>
- <authorization>
- <allow users="*"/>
- </authorization>
- </system.web>
- </location>
- <location path="res">
- <system.web>
- <authorization>
- <allow users="*"/>
- </authorization>
- </system.web>
- </location>
- </configuration>
复制代码
在IE9中运行结果:
在火狐中运行结果:
这是什么原因造成的 谁知道?
|