如何在選擇前從CheckBox控件中獲取值?它沒有.Value方法。從CheckBox控件獲取值
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?
黑白文本和複選框的值有什麼區別?我認爲它是一樣的。 – Jamil
文本是用戶在瀏覽器中看到的文字...值將是代碼背後的文字 –
您是否在談論真假? – Jamil