我在SQL Server中有两个表如下
PatientDetail - 1st table name
PatientId --- primary key
firstname
lastname
Patexam - 2nd table name
PId ---- foreign key of first table PatientId
Exam
我在页面中有一个gridview,它显示了第一个表的所有列,如下所示
<asp:GridView ID="gvDoctorList" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" AllowPaging="True" AllowSorting="True" AutoGenerateEditButton="true" AutoGenerateDeleteButton="true">
<Columns>
<asp:CommandField ShowSelectButton="True" />
<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>
我有一个按钮,其文本值=“ formatric3d”
现在,当我在gridview中选择一行,然后单击
value = "formatric3d",
所以在单击事件上,我想将所选行
patientid
以及button text value = "formatric3d"
插入表名称Patexam中。这意味着在网格视图中选择的PId等于
PatientId
,考试等于button text value = "formatric3d"
。 最佳答案
这是你想要的吗?
<asp:Button runat="server" ID="btnExam" Text="formatric3d" OnClick="Exam_ClickHandler" />
<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" />
<asp:Label runat="server" ID="lblPID" Visible="false" Text='<%# Eval("PatientId") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:CommandField ShowSelectButton="True" />
<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>
<h3>Patient Exams</h3>
<asp:DataList runat="server" ID="dtlExams">
<ItemTemplate>
<%#Eval("Exam") %>
</ItemTemplate>
</asp:DataList>
//////////////// tree view
<asp:TreeView runat="server" ID="tvExams">
</asp:TreeView>
在页面后面的代码中:
protected void Exam_ClickHandler(object sender, EventArgs e)
{
foreach (GridViewRow row in gvDoctorList.Rows)
{
CheckBox chk = (CheckBox)row.FindControl("chk");
if (chk.Checked)
{
string patientId = ((Label)row.FindControl("lblPID")).Text;
string exam = ((Button)sender).Text;
///your insertion query goes here.
///
GetPatientExams(patientId);
}
}
}
protected void Patient_ExamHandler(object sender, CommandEventArgs e)
{
string patientId = e.CommandArgument.ToString();
GetPatientExams(patientId);
}
private void GetPatientExams(string pid)
{
DataTable exams = "Get exam data from db by pid";
dtlExams.DataSource = exams;
dtlExams.DataBind();
//////////////// 树视图
TreeNode tnnn;
foreach (DataRow row in exams.Rows)
{
tnnn = new TreeNode(exams["PRODSHORT"].ToString());
tvExams.Nodes.Add(tnnn);
}
}