In my .cshtml
file, I have these DIV's:
<div class="grid_14">
<select id="txtDia" name="txtDia" class="grid_2" required>
<option>Dia</option>
</select>
<select id="txtMes" name="txtMes" class="grid_2" required>
<option>Mês</option>
</select>
<select id="txtAno" name="txtAno" class="grid_2" required>
<option>Ano</option>
</select>
</div>
How do I fill in these guys like this: Day = > from 1 to 31 Month = > from 1 to 12 Year = > from 1900 to Current
Using MVC 5, JQuery and VS 2013