如何在GridView中绑定RadioButtonList.
<asp:TemplateField HeaderText="是否使用">
<EditItemTemplate>
<asp:RadioButtonList ID="IsItemsSet" runat="server">
<asp:ListItem Value="True">是</asp:ListItem>
<asp:ListItem Value="False">否</asp:ListItem>
</asp:RadioButtonList>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="IsItemsLabel" runat="server" Text='<%#Bind("IsItems") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
如上代码,我想在GridView进入edit编辑模式的时候将这个RadioButtonList显示出来,RadioButtonList是根据IsItemsLabel控件显示内容来判断选中是还是选中否。请问该如何写呢! --------------------编程问答-------------------- 注:GridView的数据源是Xml文件! --------------------编程问答-------------------- <asp:RadioButtonList ID="IsItemsSet" SelectedValue=<%#Bind("***") %> runat="server">
--------------------编程问答-------------------- 理解能力差 你能不能说你想干什么 --------------------编程问答--------------------
在GridView模板列中拖的RadioButtonList控件不能执行SelectedValue属性。。。之前我都试过。 --------------------编程问答-------------------- 我也没看明白 MS 你是用 VS 在做个网站又想用上空间Gridview 对吧 --------------------编程问答--------------------
GridView里面有一个对数据进行编辑的功能,这个你知道吧,我想在这个编辑功能打开的时候,在正文中提到的模板列里反馈给用户一个RadioButtonList,这个RadioButtonList有两个选项,一个是,另外一个否,明白了吗?然后这个是与否总有一个要被选中吧,选中的判断条件来自哪里呢,来自这个模板列里的一个Label控件的值,此Label控件名为IsItemsLabel.那么这个代码该如何写呢,兄弟,明白了吧。 --------------------编程问答-------------------- 期待高人出现。。。 --------------------编程问答-------------------- http://blog.csdn.net/wostyh/archive/2008/12/09/3484634.aspx
补充:.NET技术 , ASP.NET