I have an application asp.net using datalist with checkbox for each
datalist item...
I want to get the value of the item that is checked but I can´t find it.
In the classic ASP it was a little bit easy, but now I didn´t find a
property like VALUE for the checkbox.
Please, if you know that..... let me know too.....
tks
troqui
Tu-Thach
>.
>
But how can I get the value ?
when I put
<asp:checkbox id="chkSuppliers" runat="server"....
I dont have the property VALUE, for example
<asp:checkbox id="chkSuppliers" runat="server" VALUE="<%=....%>"
then, how can I do that ?
troqui
I´m using VB
"Tu-Thach" <tut...@yahoo.com> escreveu na mensagem
news:0de401c33ccd$ecf3f8c0$a301...@phx.gbl...
<input type="checkbox" id="chkSuppliers" runat="server"
value="YOUR VALUE">
Then, you can access the value in your code:
chkSuppliers.Value
Tu-Thach