ref: http://download.cnblogs.com/elevenwolf/archive/2004/12/08/74230.html

以前在服务器部署IEWebcontrol时,需要装完asp.net站点后,再安装iewebcontrols,比较麻烦。

其实在web.config文件中配置一下就可以了,不需要安装。在<configuration>下添加:

<configSections>

          <section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />

</configSections>

<MicrosoftWebControls>

     <add key="CommonFiles" value="/website/webctrl_client/1_0" />

</MicrosoftWebControls>

相关文章:

  • 2022-01-12
  • 2022-03-07
  • 2021-08-18
  • 2021-10-18
  • 2021-09-22
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-29
  • 2022-02-17
  • 2021-11-13
  • 2022-02-09
  • 2021-06-20
  • 2021-10-04
  • 2021-10-22
相关资源
相似解决方案