ajax工具包集成问题

发布于 2024-09-14 17:52:34 字数 153 浏览 8 评论 0原文

我如何注册我的ajax工具包,我下载了3.5.40412.0版本(适用于2008年和2.0 dot net)并按照指示集成它,但是将脚本管理器放入aspx页面后,它说它无法识别该标签,我该怎么办?如果需要注册,那么我在哪里以及如何将其注册到我的项目中 与 web.config 有什么关系吗

how can i register my ajax tool kit, i downloaded a 3.5.40412.0 version(for 2008 and 2.0 dot net ) and integrated it as per the direction but after putting script manager to aspx page it says it doesn't recognize the tag do i need to register it if so then where and how can i register this to my project
is it any thing to do with web.config

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无远思近则忧 2024-09-21 17:52:34

添加到您的 web.config(保留现有元素):

<compilation debug="true" strict="false" explicit="true">
   <assemblies> 
 <add assembly="AjaxControlToolkit"/>
   </assemblies>
</compilation>
<pages>
  <controls>
<add assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagPrefix="ajax" />   
  </controls> 
</pages>

我给出的示例假设 dll 将被打包并部署到您的 bin 目录中。如果您是 GAC,请告诉我,我会更新。

Add to your, keeping existing elements, web.config:

<compilation debug="true" strict="false" explicit="true">
   <assemblies> 
 <add assembly="AjaxControlToolkit"/>
   </assemblies>
</compilation>
<pages>
  <controls>
<add assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagPrefix="ajax" />   
  </controls> 
</pages>

The example i gave is assuming the dll will be packaged and deployed to your bin directory. If you are GAC'ing let me know and i will update.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文