I'm trying to set a value from the database into a Html component, the code is as follow:
<asp:RadioButtonList ID="rbFiltroCostesPre" runat="server" AutoPostBack="false" Width="286px">
<asp:ListItem Selected="True" Value="A">All</asp:ListItem>
<asp:ListItem Value="Greater">First 10</asp:ListItem>
<asp:ListItem Value="GreaterThan">Greater than: <input ID="txtGreaterThan" type="text" ></asp:ListItem>
</asp:RadioButtonList>
The last ListItem has a Html tag inside, like:
<input id="txtGreaterThan" type="text"/>
, which has been transform by the Visual Web Development IDE.
Can I set it's value dynamically from the codebehind? Thx.