I would like to have a radiobuttollist were you can select value null.
Something like this:
<asp:RadioButtonList ID="rblCD" runat="server" SelectedValue='<%# Bind("tblCD") %>'>
<asp:ListItem Value="RW">RW</asp:ListItem>
<asp:ListItem Value="R">R</asp:ListItem>
<asp:ListItem Value="DBNull">None</asp:ListItem>
</asp:RadioButtonList>
Thanks a lot,
Vincent
THe values in a radiobuttonlist are always strings. You would have to do something like this
Then when you read the data from the control do something like