I've got an ASP.NET control say checkbox:
<asp:CheckBox ID="myChck" runat="server" Value="myCustomValue" />
Is it possible to add this custom Value attribute from code-behind and respectively get the value from Value
Something like (psuedocode):
myCkck.Value = "blq blq";
string chckValue = myChck.Value;
How can I do this?
http://msdn.microsoft.com/en-us/library/7a9d6h4f(v=vs.100).aspx