asp:ImageButton是否具有存储misc字符串的属性?

时间:2017-04-12 16:49:30

标签: c# asp.net

asp:ImageButton是否具有存储字符串的属性?

类似于Windows Button Tag属性。

感谢。

1 个答案:

答案 0 :(得分:1)

您可以将自己的attributes添加到任何控件中,并在以后需要时阅读。

ImageButton1.Attributes.Add("tag", myVar);

然后稍后在某处阅读。

protected void Button1_Click(object sender, EventArgs e)
{
    string myVar = ImageButton1.Attributes["tag"];
}