如果触发器位于更新面板内的用户控件内,我无法弄清楚如何在更新面板中获取触发器以更新另一个更新面板中的控件。这是我的测试用例。
Test.aspx文件:
<%@ Page Title="" Language="C#" MasterPageFile="~/Master.Master" AutoEventWireup="true"
CodeBehind="Test.aspx.cs" Inherits="MyTestApp.Test" %>
<%@ Register src="UpdatePanelTest.ascx" tagname="UpdatePanelTest" tagprefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<uc1:UpdatePanelTest ID="UpdatePanelTest1" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Label ID="Label2" runat="server" ForeColor="red" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:Button ID="Button3" runat="server" Text="(3) Update Black Time" OnClick="Button3_Click" />
</div>
</asp:Content>
Test.aspx.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MyTestApp
{
public partial class Test : System.Web.UI.Page
{
protected void Button3_Click(object sender, EventArgs e)
{
((Label)UpdatePanel1.FindControl("UpdatePanelTest1").FindControl("Label1")).Text = DateTime.Now.ToLongTimeString();
}
}
}
UpdatePanelTest.ascx:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="UpdatePanelTest.ascx.cs" Inherits="MyTestApp.UpdatePanelTest" %>
<asp:Label ID="Label1" runat="server" /><br />
<asp:Button ID="Button1" runat="server" Text="(1) Update Both Times" OnClick="Button1_Click" />
<asp:Button ID="Button2" runat="server" Text="(2) Update Black Time" OnClick="Button2_Click" />
UpdatePanelTest.ascx.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MyTestApp
{
public partial class UpdatePanelTest : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = DateTime.Now.ToLongTimeString();
((Label)Parent.FindControl("UpdatePanel2").FindControl("Label2")).Text = DateTime.Now.ToLongTimeString();
}
protected void Button2_Click(object sender, EventArgs e)
{
Label1.Text = DateTime.Now.ToLongTimeString();
}
}
}
用户界面如下:
(empty first label, which will become a black timestamp)
(1) Update Both Times (2) Update Black Time
(empty second label, which will become a red timestamp)
(3) Update Black Time
如果我单击(1),这是在用户控件内部,只有黑色时间戳更新,但是当我调试它时,我可以看到它正确地将文本分配给红色时间戳。如果我单击(2),也在用户控件内,它只是正确更新黑色时间戳。如果我点击主页面上的(3),它只会更新黑色时间戳,但它最终会显示红色时间戳,其中包含我点击按钮(1)时的时间戳。另一个问题是它刷新整个页面,这是我试图避免的全部内容。
当我点击另一个UpdatePanel
中的用户控件内的控件时,我需要更改以便在一个UpdatePanel
中正确更新并显示控件?我已经尝试了另一种方法,点击UpdatePanel
内的控件尝试更新另一个UpdatePanel
内的用户控件内的控件,结果类似。
答案 0 :(得分:1)
从一个更新面板更新到另一个更新面板可能需要在后者上显式调用Update方法。在用户控件中公开一个事件,在您的页面中实现使用此用户控件并调用第二个UpdatePanel的Update方法。
要明确说明,需要将UpdatePanelTest.ascx.cs中Button1 click事件的代码更改为以下内容:
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = DateTime.Now.ToLongTimeString();
((Label)Parent.FindControl("UpdatePanel2").FindControl("Label2")).Text = DateTime.Now.ToLongTimeString();
((UpdatePanel)Parent.FindControl("UpdatePanel2")).Update();
}