0

我有一个 RadioButtonList 看起来像这样:

<asp:RadioButtonList 
    ID="rblAgenda" 
    SelectedValue = '<%# Bind("bitAgenda") %>'
    runat="server" 
    RepeatDirection="Horizontal">
    <asp:ListItem Value="1">Yes</asp:ListItem>
    <asp:ListItem Value="0">No</asp:ListItem>
</asp:RadioButtonList>

这是在绑定到 sqlDataSource 的表单视图内。我检查了它为 bitAgenda 返回 1 的存储过程,但我仍然收到此错误消息:

'rblAgenda' has a SelectedValue which is invalid because it does not exist in the list of items.
Parameter name: value 

这让我发疯>:(有什么想法???顺便说一句 bitAgenda 是数据库中的一个字段,这是导致问题的原因吗?

4

1 回答 1

3

尝试分别更改您的ListItem值 from10totruefalse

于 2012-04-12T19:00:13.507 回答