I Have Three Select Not Dropdown For Select Cntry, State And City .
When I Inser into Database Its all Insert into database
Not Selected Text Insert
<select name="country" class="form-control countries" id="country" runat="server" tabindex="0">
<option selected="selected" value="all">Select Country</option>
</select>
</div>
<div class="form-group">
<select name="state" class=" form-control states" id="state" runat="server" tabindex="0">
<option selected="selected" value="all">Select State</option>
</select>
</div>
<div class="form-group">
<select name="city" class=" form-control cities" id="city" runat="server" tabindex="0">
<option selected="selected" value="all">Select City</option>
</select>
</div>
Data Comes Via A pi Into Select Box..
cmd1.Parameters.AddWithValue("@Country", country.Items.FindByValue(countryId.Value).Text);
cmd1.Parameters.AddWithValue("@Staet", state.Items.FindByValue(stateId.Value).Text);
cmd1.Parameters.AddWithValue("@City", city.Items.FindByValue(cityId.Value).Text);
But Selected Counry State And City Not Inserterted .. Only Select insert...
Please Give Som eSolutions..