checkbox in side a list box

  • Thread starter Thread starter agnihothri dayal via .NET 247
  • Start date Start date
A

agnihothri dayal via .NET 247

hi all,
i have a doubt.
i am a new bie in asp.net.
i want to add multiple number of checkboxes in a list box.any body can throw some light into this problem, any hlp using code/some resources will be greatly appreaciated,

thnx in advance,
Agni.

From: agnihothri dayal
 
agnihothri said:
hi all,
i have a doubt.
i am a new bie in asp.net.
i want to add multiple number of checkboxes in a list box.any body can throw some light into this problem, any hlp using code/some resources will be greatly appreaciated,

thnx in advance,
Agni.

From: agnihothri dayal

An HTML listbox does not allow checkboxes, but you can fake it (sort of)
- this is from memory, so forgive me if it's not 100% correct:

<div id="checkedListBox" style="overflow:auto;width:200px;height:400px">
<input type="checkbox" name="checkOption1" /><label
for="checkOption1">Option 1</label><br />
<input type="checkbox" name="checkOption2" /><label
for="checkOption2">Option 2</label><br />
...
<input type="checkbox" name="checkOption9" /><label
for="checkOption9">Option 9</label><br />
</div>

Hope this helps
 
Thomas said:
Ed Courtenay wrote:




Alternatively you have the CheckListbox web control available.

Doh! I completely forgot about that control!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top