只有第一个标签不显示在ASP.NET C#页面上

时间:2015-01-07 20:02:31

标签: c# asp.net label updatepanel

我在2个更新面板中有多个asp.net标签。我正在处理它们,但第一个没有显示出来。为了简单起见,我在一个按钮上发生了所有事情,实际上代码发生在不同的地方,但我在Debug中逐步完成它并确认这是订单。我认为它与2个更新面板有关,更改它UpdatePanel3不会更新UpdatePanel2,但不确定。

<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
        <asp:Label ID="LabelError" runat="server" 
            style="float: left" ForeColor="Red"></asp:Label>

...

<asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="Conditional">
     <ContentTemplate>
        <asp:Label ID="LabelError2" runat="server" Text="Password" 
            style="float: left" Visible="False"></asp:Label>

        <asp:Button ID="ButtonShow" runat="server" Text="Submit" 
                  onclick="ButtonShow_Click" />
                  </ContentTemplate>

在代码中,我执行以下操作。

protected void ButtonShow_Click(object sender, EventArgs e)
{
  LabelError.Visible=true;
  LabelError2.Visible=true;

  LabelError.Style.Remove("display");
  LabelError.ForeColor = System.Drawing.Color.Red;

  LabelError2.Style.Remove("display");


  if (LabelError.Visible)
  {
      LabelError.Text="This is Label Error";
      LabelError.Style.Add("display", "block");
  }
  else
  {
      LabelError.Style.Add("display", "none");
  }

  if (LabelError2.Visible)
  {
       LabelError2.Text="This is Label Error2";
       LabelError2.Style.Add("display", "block");
  }
  else
  {
      LabelError2.Style.Add("display", "none");
  }
}

LabelError2在屏幕上弹出。 LabelError没有。 使用IE,点击F12并查看DOM LabelError甚至不存在。 我究竟做错了什么?为什么LabelError不会出现?

1 个答案:

答案 0 :(得分:0)

考虑到这个理论,我尝试添加UpdatePanel2.Update();在ButtonShow_Click()结束时这工作。它出现了。