asp:ImageButton
是否具有存储字符串的属性?
类似于Windows Button Tag
属性。
感谢。
答案 0 :(得分:1)
您可以将自己的attributes
添加到任何控件中,并在以后需要时阅读。
ImageButton1.Attributes.Add("tag", myVar);
然后稍后在某处阅读。
protected void Button1_Click(object sender, EventArgs e)
{
string myVar = ImageButton1.Attributes["tag"];
}