Hi guys,
I really like the HTML tag which makes it really easy to see which label stands for which input element by checking its 'for' attribute. You know, something like:
<label for="txtInput"> Enter your name</label>
<input type="text" id="txtInput" />
Is it possible to do something similar in asp.net Label control so that I can see it stands for what input control? I could not see an attribute for that. Without extending the control?
Thanks!