苏飞论坛

标题: ext.net配置 [打印本页]

作者: 记忆    时间: 2013-2-28 10:09
标题: ext.net配置
使用ext.net,控件已经导入到工具箱中,现在需要在web.config文件中配置下,怎么配置啊,在网上找的貌似都不行,哪位老大能给指点下啊,我的项目中web.config文件代码如下:
  1. <?xml version="1.0"?>
  2. <!--
  3.   有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4.   http://go.microsoft.com/fwlink/?LinkId=169433
  5.   -->
  6. <configuration>
  7.   
  8.   
  9.   
  10.   <system.web>
  11.     <compilation debug="true" targetFramework="4.5">
  12.       <assemblies>
  13.         <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  14.       </assemblies>
  15.     </compilation>
  16.     <httpRuntime targetFramework="4.5"/>
  17.   </system.web>
  18.   <connectionStrings>
  19.     <add name="DB" connectionString="Data Source=.; Initial Catalog=MFDB;Integrated Security=True" providerName="System.Data.SqlClient"/>
  20.     <add name="connectionString" connectionString="Server=.;Initial Catalog=MFDB;User ID=sa;Password=jieeyi;" providerName="System.Data.SqlClient"/>
  21.     <add name="MFDBEntities" connectionString="metadata=res://*/Store.csdl|res://*/Store.ssdl|res://*/Store.msl;provider=System.Data.SqlClient;provider connection string="data source=.;initial catalog=MFDB;persist security info=True;user id=sa;password=jiyi;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient"/>
  22.   </connectionStrings>
  23.   <system.serviceModel>
  24.     <bindings>
  25.       <basicHttpBinding>
  26.         <binding name="BasicHttpBinding_IService1"/>
  27.         <binding name="WebServiceSoap"/>
  28.       </basicHttpBinding>
  29.     </bindings>
  30.     <client>
  31.       <endpoint address="http://localhost:9746/Service1.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1" contract="WcfService.IService1" name="BasicHttpBinding_IService1"/>
  32.       <endpoint address="http://localhost:43022/WebService.asmx" binding="basicHttpBinding" bindingConfiguration="WebServiceSoap" contract="webservice.WebServiceSoap" name="WebServiceSoap"/>
  33.     </client>
  34.   </system.serviceModel>

  35. </configuration>
复制代码

作者: Koson    时间: 2013-2-28 10:40
报什么错误。具体配置其实很简单的:http://examples.ext.net/#/Getting_Started/Introduction/README/
[code=html]<?xml version="1.0"?>
<configuration>
        <configSections>
                <section name="extnet" type="Ext.Net.GlobalConfig" requirePermission="false" />
        </configSections>
  
        <extnet scriptMode="Release" theme="Gray" /> <!-- See Property Options below in Sec IV. -->
  
        <!--
                The following system.web section is only requited for running ASP.NET AJAX under Internet
                Information Services 6.0 (or earlier).  
               
                This section is not necessary for IIS 7.0 or later, although does not have to be removed.
        -->
        <system.web>
                <httpHandlers>
                        <add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false" />
                </httpHandlers>
                <httpModules>
                        <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
                </httpModules>
                <pages>
                        <controls>
                                <add assembly="Ext.Net" namespace="Ext.Net" tagPrefix="ext" />
                        </controls>
                </pages>
        </system.web>
  
        <!--
                The system.webServer section is required for running ASP.NET AJAX under Internet Information Services 7.0.
               
                It is not necessary for previous version of IIS, although does not have to be removed.
        -->
        <system.webServer>
                <validation validateIntegratedModeConfiguration="false"/>
                <modules>
                        <add
                                name="DirectRequestModule"
                                preCondition="managedHandler"
                                type="Ext.Net.DirectRequestModule, Ext.Net"
                                />
                </modules>
                <handlers>
                        <add
                                name="DirectRequestHandler"
                                verb="*"
                                path="*/ext.axd"
                                preCondition="integratedMode"
                                type="Ext.Net.ResourceHandler"
                                />
                </handlers>
        </system.webServer>
        <runtime>
                <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
                        <dependentAssembly>
                                <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
                                <bindingRedirect oldVersion="1.0.0.0-4.5.9" newVersion="4.5.10" />
                        </dependentAssembly>
                        <dependentAssembly>
                                <assemblyIdentity name="Ext.Net.Utilities" publicKeyToken="2c34ac34702a3c23" />
                                <bindingRedirect oldVersion="0.0.0.0-2.0.1" newVersion="2.1.0" />
                        </dependentAssembly>
                        <dependentAssembly>
                                <assemblyIdentity name="Transformer.NET" publicKeyToken="e274d618e7c603a7" />
                                <bindingRedirect oldVersion="0.0.0.0-2.0.0" newVersion="2.1.0" />
                        </dependentAssembly>
                </assemblyBinding>
        </runtime>
</configuration>[/code]

作者: Koson    时间: 2013-2-28 10:47
你如果想跳过这种方式,还可以使用NuGet来完成。只是需要稍微花点时间。打开你的项目。在VS菜单工具栏上选择 TOOLS〉Library Package Manager〉Package Manager Console,然后在打开的控制台使用命令方式更新:PM> Install-Package Ext.NET。等待更新完成吧。
作者: 记忆    时间: 2013-2-28 10:53
那按照老大你的意思就是使用ext.net可以不用配置web.config文件,是不是啊
作者: Koson    时间: 2013-2-28 10:56
選擇手動配置也可以啊,很簡單的啊。上面都給出了,就那幾個節點而已。你不想自己配置也可以啊。直接使用NuGet控制臺命令更新。你看你貼出來的配置文件就知道了,那幾個節點都沒有寫上。能不報錯嗎。
作者: 记忆    时间: 2013-3-1 10:37
Koson 发表于 2013-2-28 10:56
選擇手動配置也可以啊,很簡單的啊。上面都給出了,就那幾個節點而已。你不想自己配置也可以啊。直接使用Nu ...

嗯已经搞定了老大




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4