从网格视图所选行绑定的树视图

本文关键字:视图 绑定 网格 | 更新日期: 2023-09-27 18:34:16

我有两个表格如下

PatientDetail - 1st table name     
PatientId --- primary key
firstname
lastname
Patexam - 2nd table name
PId ---- foreign key of first table PatientId
Exam

第一个表显示在网格视图中,如下所示

<asp:GridView ID="gvDoctorList" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" 
                            AllowPaging="True" AllowSorting="True" AutoGenerateEditButton="true" AutoGenerateDeleteButton="true">
                            <Columns>
                                <asp:TemplateField>
                                    <ItemTemplate>
                                        <asp:CheckBox runat="server" ID="chk" OnCheckedChanged="chk_CheckedChanged" />
                                        <asp:Label runat="server" ID="lblPID" Visible="false" Text='<%# Eval("PatientId") %>'></asp:Label>
                                    </ItemTemplate>
                                </asp:TemplateField>
                                <asp:BoundField DataField="PatientId" HeaderText="PatientId" SortExpression="PatientId" />
                                <asp:BoundField DataField="firstname" HeaderText="firstname" SortExpression="firstname" />
                                <asp:BoundField DataField="lastname" HeaderText="lastname" SortExpression="lastname" />
                                <asp:BoundField DataField="sex" HeaderText="sex" SortExpression="sex" />
                            </Columns>
                        </asp:GridView>
                        <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:MyDatabaseConnectionString %>" 
                            SelectCommand="SELECT [PatientId],[firstname], [lastname], [sex] FROM [PatientDetails]"></asp:SqlDataSource>

现在,当我使用复选框从网格视图中选择一行或多行时,那一刻,我想使用树视图将名字显示为第一个表中的根节点,并将考试显示为第二个表中的子节点。

代码怎么可能???

谢谢

从网格视图所选行绑定的树视图

有一个模板与树视图控件一起归档。处理选择行事件,传递选定的患者 ID 并获取考试名称并在树视图中填充值。