编程语言
首页 > 编程语言> > c#-从CheckBox控件获取值

c#-从CheckBox控件获取值

作者:互联网

如何在选择之前从CheckBox控件中获取值?它没有.Value方法.

else if (c.GetType() == typeof(CheckBox)) // c is control
{
      string textValue= ((CheckBox)(c)).Text; // here I take the text
     string value= ((CheckBox)(c)).????; //how should I take the value?

解决方法:

您必须获得Value属性.

string Value = checkbox1.Attributes["Value"];

标签:webforms,asp-net,c,checkbox
来源: https://codeday.me/bug/20191120/2041040.html