如何在从母版页继承的页面内使用AjaxControlTookit的选项卡面板

发布于 2024-10-18 01:47:02 字数 307 浏览 0 评论 0原文

我试图在页面上使用更新面板和选项卡容器,但是当我编译项目时,出现此错误...

类型“System.Web.UI.ScriptControl”是在未引用的程序集中定义的。您必须添加对程序集“System.Web.Extensions,Version=3.5.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35”的引用。

我已经添加了对 aspx 页面、web.config 的引用,但构建仍然失败。我还有什么需要做的吗?我缺少什么?

附:如果您需要我提供更多信息,请告诉我。

提前致谢。

I'm trying to use both update panel and tab container on my page but when I compile the project I get this error...

The type 'System.Web.UI.ScriptControl' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.

I've already added the reference to the aspx page, web.config and still the build fails. Is there something else I need to do? What am I missing?

ps. Please let me know if you need me to provide any more information.

Thanks in advance.

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

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

发布评论

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

评论(1

爱格式化 2024-10-25 01:47:02

您需要将该引用添加到您的 web.config 中。

<compilation debug="true">
  <assemblies>
    <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

you need to add that reference to your web.config.

<compilation debug="true">
  <assemblies>
    <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文