gpt4 book ai didi

C#:RadioButtonList 中的数据库为空

转载 作者:太空宇宙 更新时间:2023-11-03 11:48:27 28 4
gpt4 key购买 nike

我想要一个单选按钮列表,您可以在其中选择值 null。

是这样的:

<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>

非常感谢,文森特

最佳答案

单选按钮列表中的值始终是字符串。你必须做这样的事情

<asp:ListItem Value="">None</asp:ListItem>

然后当你从控件中读取数据时,做类似的事情

if (rblCD.SelectedValue == string.Empty)
{
MyDataRow["Column"] = DBNull.Value;
}

关于C#:RadioButtonList 中的数据库为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2789138/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com