Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
iam Using
XML
<input type="checkbox" class="LineLightAPP" size=""/>

i creat run time junnerat this input checkboxs
like this
VB
For T As Integer = 0 To DtTable.Rows.Count - 1
                StrContent &= "<tr><td  align='center' class='LineLightAPP' with='20%'><input type='checkbox' Name='chk'ID='RR' runat='server' onclick='javascript:CalcTotTickets(this);' title='T' " & T & "   />" & DtTable.Rows(T).Item("ROOM_NAME").ToString & "</td></tr>"

Next

after i get 5 input checkbox but i selected(checked)onebox that box how to find please help me
Posted
Updated 30-May-12 7:15am
v2
Comments
R. Giskard Reventlov 30-May-12 14:18pm    
Unfortunately your question is incomprehensible. Please try to rephrase. Plainly English is not your primary language: is there anyone that can help you phrase it better?
Kschuler 30-May-12 16:02pm    
What is a "junnerat"?

1 solution

Try This

<br />
StrContent &= "<tr><td align="center" class="LineLightAPP" with="20%"><input type='checkbox' Name='chk'" & Convert.ToString(T) & "ID='RR'" & Convert.ToString(T) & "runat="'server'" onclick='javascript:CalcTotTickets(this);' title='T' " & T & "   />" & DtTable.Rows(T).Item("ROOM_NAME").ToString & "</td></tr>"<br />


Now you can access each checkbox separately.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900