dropdownlist
asp.netページに
<asp:RadioButtonList ID="rdblstcookinglevel" runat="server" CellPadding="0"
CellSpacing="0" >
<asp:ListItem>Novice</asp:ListItem>
<asp:ListItem>Beginner</asp:ListItem>
<asp:ListItem>Intermediate</asp:ListItem>
<asp:ListItem>Expert</asp:ListItem>
<asp:ListItem>Professional</asp:ListItem>
</asp:RadioButtonList>
ページの読み込み時に、selectedvalue
データベースから取得した値に基づいてが設定されます。
rdblstcookinglevel.SelectedValue = user.CookingLevel;
ただし、ページ上でユーザーが選択をselectedindex
変更しても、は変更されないため、古い選択値がデータベースに返送されます。
User.CookingLevel = rdblstcookinglevel.SelectedValue;