Hello,
In HTML, What's the purpose of the attribute for in the label tag.
<label for = "Name">Name: </label>
<% = Html.TextBox("Name")%>
In the above sample, why the label tag has a for = "Name" attribute? To mark their association??? If I don't put for what gonna happen?
Thanks for helping