在Visible true之后不显示asp Label

时间:2017-10-27 14:01:22

标签: c# asp.net

我正在获取一个值并且它正确显示(使用它作为标志)。现在我们添加一个验证,但它没有显示它是否符合验证。为什么?我不知道。

.aspx.cs

if (u.StatusRef.ToString().Equals('1'))
            {
                Email_Sent.Visible = true;
            }

的.aspx

<asp:Label ID="statusRef" runat="server"></asp:Label>  <--- This shows the value '1'
<asp:Label ID="Email_Sent" runat="server" hidden="true">Status: You have notified the candidate to confirm references.</asp:Label>

谢谢, EB。

1 个答案:

答案 0 :(得分:1)

您可以尝试使用:

<asp:Label ID="Email_Sent" runat="server" Visible="False">
                                          ^^^^^^^^

而不是hidden="true"