http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 6512|回复: 5

[Asp.Net] ext.net配置

[复制链接]
发表于 2013-2-28 10:09:18 | 显示全部楼层 |阅读模式
使用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>
复制代码


1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2013-2-28 10:40:07 | 显示全部楼层
报什么错误。具体配置其实很简单的: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]
发表于 2013-2-28 10:47:12 | 显示全部楼层
你如果想跳过这种方式,还可以使用NuGet来完成。只是需要稍微花点时间。打开你的项目。在VS菜单工具栏上选择 TOOLS〉Library Package Manager〉Package Manager Console,然后在打开的控制台使用命令方式更新:PM> Install-Package Ext.NET。等待更新完成吧。
 楼主| 发表于 2013-2-28 10:53:13 | 显示全部楼层
那按照老大你的意思就是使用ext.net可以不用配置web.config文件,是不是啊
发表于 2013-2-28 10:56:35 | 显示全部楼层
選擇手動配置也可以啊,很簡單的啊。上面都給出了,就那幾個節點而已。你不想自己配置也可以啊。直接使用NuGet控制臺命令更新。你看你貼出來的配置文件就知道了,那幾個節點都沒有寫上。能不報錯嗎。
 楼主| 发表于 2013-3-1 10:37:15 | 显示全部楼层
Koson 发表于 2013-2-28 10:56
選擇手動配置也可以啊,很簡單的啊。上面都給出了,就那幾個節點而已。你不想自己配置也可以啊。直接使用Nu ...

嗯已经搞定了老大
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2024-11-15 18:24

© 2014-2021

快速回复 返回顶部 返回列表