隐藏控件标签
Posted houweidong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏控件标签相关的知识,希望对你有一定的参考价值。
protected void Button3_Click(object sender, EventArgs e)
{
if (this.TextBox1.Text.ToString().Trim()=="101")
{
this.Button1.Visible = true;
this.Button2.Visible = true;
HyperLink1.Visible = true;
}
else
{
Response.Write("识别码不正确");
}
}
以上是关于隐藏控件标签的主要内容,如果未能解决你的问题,请参考以下文章
delphi 7里怎么隐藏PageControl控件的tabsheet标签