CheckBox服务器控件只能有/True和False这样传值吗?
如题! --------------------编程问答-------------------- 那你的想法是? --------------------编程问答-------------------- 变成字符传也行啊 --------------------编程问答-------------------- 怎么编程字符串呢?--------------------编程问答-------------------- 重写CheckBox
public string Value
{
get
{
return (this.Checked) ? ("0") : ("1");
}
set
{
this.Checked = (value == "0") ? (true) : (false);
}
}
补充:.NET技术 , ASP.NET