我显示了 2 个标签和 2 个文本框和 1 个按钮。
当页面加载Name
和Button
(将最初显示)。稍后当我单击时,Button
我需要显示age
label
and textbox
。我怎样才能做到这一点 ?
<ol>
<li>
<asp:Label runat="server" AssociatedControlID="Name">
User name
</asp:Label>
<asp:TextBox runat="server" ID="Name" Width="167px" />
<asp:Button ID="Button1" runat="server" Text="Button" />
</li>
<li>
<asp:Label runat="server" AssociatedControlID="age">age</asp:Label>
<asp:TextBox runat="server" ID="age" TextMode="age" Width="240px" />
</li>
</ol>
按钮按下代码
protected void Button1_Click(object sender, EventArgs e)
{
}