ASP.NET:如何创建单选按钮并将其数据绑定到详细信息视图中?

发布于 2024-07-06 01:04:16 字数 224 浏览 6 评论 0原文

我在DetailsView中有一个TemplateField,它的输入应该是查找表中的几个选择之一。 目前它是一个文本字段,但我希望它是一组单选按钮,并且它应该在插入和编辑模式下工作(应在编辑模式下选择正确的当前值)。

如何创建互斥的单选按钮并将它们数据绑定到 DetailsView TemplateField 中?

我在 ASP.NET 3.5 上使用 Oracle 数据库作为数据源。

I have a TemplateField in a DetailsView and its input should be one of a few choices in a lookup table. Currently it's a text field, but I want it to be a group of radio buttons, and it should work in both insert and edit mode (the correct current value should be selected in edit mode).

How do I create mutually exclusive radio buttons and databind them in a DetailsView TemplateField?

I'm on ASP.NET 3.5 using an Oracle database as a datasource.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒与心事 2024-07-13 01:04:16
<EditItemTemplate>
    <asp:RadioButtonList ID="RadioButtonList1" runat="server" 
        DataSourceID="LookupSqlDataSource" DataTextField="LOOKUPITEM_DESCRIPTION" 
        DataValueField="LOOKUPITEM_ID" SelectedValue='<%# Bind("ITEM_ID")%>'>
    </asp:RadioButtonList>
</EditItemTemplate>

<InsertItemTemplate>
    <asp:RadioButtonList ID="RadioButtonList1" runat="server" 
        DataSourceID="LookupSqlDataSource" DataTextField="LOOKUPITEM_DESCRIPTION" 
        DataValueField="LOOKUPITEM_ID" SelectedValue='<%# Bind("ITEM_ID")%>'>
    </asp:RadioButtonList>
</InsertItemTemplate>
<EditItemTemplate>
    <asp:RadioButtonList ID="RadioButtonList1" runat="server" 
        DataSourceID="LookupSqlDataSource" DataTextField="LOOKUPITEM_DESCRIPTION" 
        DataValueField="LOOKUPITEM_ID" SelectedValue='<%# Bind("ITEM_ID")%>'>
    </asp:RadioButtonList>
</EditItemTemplate>

<InsertItemTemplate>
    <asp:RadioButtonList ID="RadioButtonList1" runat="server" 
        DataSourceID="LookupSqlDataSource" DataTextField="LOOKUPITEM_DESCRIPTION" 
        DataValueField="LOOKUPITEM_ID" SelectedValue='<%# Bind("ITEM_ID")%>'>
    </asp:RadioButtonList>
</InsertItemTemplate>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文