attempting to set a radio button on a grid view via a condition.
<input name="MyRadioButton" id="MyRadioButton<%=RadioNum() %>" type="radio" value='<%# Eval("TCMD_DCMNT_NBR") & Eval("VNDR_RQST_NBR") %>' style="left:auto" <% Eval("IsPostBack") {checked="checked"} {} %> />
<label for="MyRadioButton<%=RadioNumLabel() %>" style="display:none;"><%# Eval("TCMD_DCMNT_NBR") & Eval("VNDR_RQST_NBR") %></label>
</ItemTemplate>
not quite sure how to set the checked to true when my IsPostBack is true.
thanks