I have this code below:
<select size="1" name="sel1">
<option value="c1">Choice 1</option>
<option value="c2">Choice 2</option>
<option value="c3">Choice 3</option>
<option value="c4">Choice 4</option>
</select>
Then what I want to happen, is to hide for example the 1st option in a method (for example below) in the .aspx.cs file. How to do that?
protected void RptFaqsAnswer_ItemDataBound(object sender, RepeaterItemEventArgs e){
// codes here...
}
Thanks
RJ