c# - Get the value from the CheckBox Control -


how can value checkbox control before selected?? doesn´t have .value method.

else if (c.gettype() == typeof(checkbox)) // c control {       string textvalue= ((checkbox)(c)).text; // here take text      string value= ((checkbox)(c)).????; //how should take value? 

try : ((checkbox)(c)).checked.tostring()


Comments

Popular posts from this blog

android - questions about switching from C2DM to GCM -

c++ - Qt setGeometry: Unable to set geometry -

batch file - How to extract all multi-volume RAR archives from subfolders of a folder? -