本文介绍了如何在网格视图的复选框列表中显示两个选定复选框的值?我在这里不使用身份证.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<asp:CheckBoxList ID="chbklist1" runat="server"  AutoPostBack="true"



            style="z-index: 1; left: 84px; top: 210px; position: absolute; height: 90px; width: 139px"

            onselectedindexchanged="chbklist1_SelectedIndexChanged">
            <asp:ListItem Text="Air India" Value="1" ></asp:ListItem>
            <asp:ListItem Text="KingFisher Red" Value="2" ></asp:ListItem>
        </asp:CheckBoxList>















<asp:GridView ID="GridView1" runat="server"



            style="z-index: 1; left: 258px; top: 127px; position: absolute; height: 316px; width: 718px">
        </asp:GridView>

推荐答案


这篇关于如何在网格视图的复选框列表中显示两个选定复选框的值?我在这里不使用身份证.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 06:14