当我将 UpdatePanel 拖放到我的用户控件上时,我在用户控件的自动生成文件中得到了这个变量:
/// <summary>
/// UpdatePanel1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.UpdatePanel UpdatePanel1;
但是,UpdatePanel 位于完全不同的命名空间中:
/// <summary>
/// UpdatePanel1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.UpdatePanel UpdatePanel1;
我在程序集配置部分下的 web.config 中有此配置条目:
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
为什么这种行为会发生在我身上?