当前位置:编程学习 > C#/ASP.NET >>

CheckBox服务器控件只能有/True和False这样传值吗?

如题! --------------------编程问答-------------------- 那你的想法是? --------------------编程问答-------------------- 变成字符传也行啊 --------------------编程问答-------------------- 怎么编程字符串呢?
--------------------编程问答-------------------- 重写CheckBox


public string Value
        {
            get
            {
                return (this.Checked) ? ("0") : ("1");
            }
            set
            {
                this.Checked = (value == "0") ? (true) : (false);
            }
        }
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,