从Gridview获取价值到另一个页面

时间:2013-10-08 08:29:28

标签: c# asp.net gridview sql-server-2012

我在一个页面中有一个gridview,如下所示。

 <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>

现在,当用户同时检查复选框时,我希望PatientId从gridview进入另一个页面,并且我想将PatientId插入到sql表中。

非常感谢,如果有人给我代码

* UPDATED :: *

我的page_load代码是

if (!IsPostBack) { 
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; 
     Session[patientId] = patientId;
     }
  }
 }

2 个答案:

答案 0 :(得分:1)

为什么不尝试这个?

Session ["PatientID"] = YoureGridView.SelectedRow.Cells[indexOfPatientID].Text;

这样,在转到其他页面时,PatientID的值就在会话中,您可以使用

在会话中检索数据
Int PatientID = Convert.Toint16(Session["PatientID"]); 

如果它是一个字符串

   string PatientID = Session["PatientID"].ToString();

我猜是因为你没有提供足够的信息,但如果我要将数据传输到另一个网页,那就是我编码的方式

用于在SQL中插入并假设其TSQL我使用类似这样的东西

        SqlCommand Update = new SqlCommand();
        Update.Connection = YourConnection;
        Update.CommandType = CommandType.StoredProcedure;
        Update.CommandText = "usp_YoureStoredProcedure";
        Update.Parameters.AddWithValue("@id", Convert.Toint16(Session["PatientID"])); //the convert varies on what data type you are using this is just an example

如果您想要更明确的答案,请尝试发布或告诉我们更多内容,这也只是一个例子。

答案 1 :(得分:0)

请尝试查询字符串或会话。 请参考此链接 QueryString or Session Tutorial