I have the below example html select (dropdown)
<select name="Testing">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4" selected>Select</option>
</select>
And the following SQL Server Table:
ID NAME
1 Apple
2 Orange
3 Peach
This drop down is part of a form which is posted to server, the value is read using:
reqparm.Add("TestDropdown", Request["Testing"].ToString());
How do I populate the drop down while keeping the name attribute?