简体   繁体   English

如何使用AjaxControlTookit的“选项卡面板”内页从母版页继承而来

[英]How to use AjaxControlTookit's Tab Panel inside page inherited from masterpage

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. 类型“ System.Web.UI.ScriptControl”在未引用的程序集中定义。 You must add a reference to assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. 您必须添加对程序集'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. 我已经将引用添加到aspx页面,web.config,并且构建仍然失败。 Is there something else I need to do? 还有什么我需要做的吗? What am I missing? 我想念什么?

ps. ps。 Please let me know if you need me to provide any more information. 如果您需要我提供更多信息,请告诉我。

Thanks in advance. 提前致谢。

you need to add that reference to your web.config. 您需要将该引用添加到您的web.config。

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM