I have following HTML radio button.
<input type="radio" name="radiog_dark" id="radio4" value="Male" class="css-checkbox"/>
<label for="radio4" class="css-label">Male</label>
<input type="radio" name="radiog_dark" id="radio5" class="css-checkbox" value="Female" checked="checked"/>
<label for="radio5" class="css-label">Female</label>
I am retrieving the value from Database and want to assign to this HTML radio button. How i will assign it. Please suggest me. If i am using radiobuttonlist then i am assigining like below:
RadiobuttonList1.SelectedValue= objUser.Gender;