I have the following HTML code which displays a CHECKBOX input:
<label class="label_check" for="sample-check">
<input name="sample-check" id="sample-check" value="1" type="checkbox" />
Sample Label
</label>
Screenshot:

Whether a user clicks on the box or the text, the option gets selected.
What ASP control can I use so it works the same way it does in HTML? The reason being is I will be getting some column from my SQL table and create as many of those checkboxes in my page as there are columns from C#.
<asp:Checkbox />user control.http://webdesign.maratz.com/lab/fancy-checkboxes-and-radio-buttons/demo.html