如果输入的年龄低于 12 岁,我想要一个特定的文本。我想到了一些隐蔽的 int,以某种方式。但我不知道怎么做。有人可以帮我吗?
这就是我所拥有的:
<asp:TextBox ID="txtAge" runat="server" />
<br />
<asp:Button ID="btnSend" runat="server" Text="Send" onclick="btnSend_Click" />
<br />
<asp:Literal ID="litResult" runat="server" />
这是我的代码隐藏:
protected void btnSend_Click(object sender, EventArgs e)
{
if (txtAge.Text <= 12)
{
litResult.Text = "You are a child";
}
}