请求.Gridview中的QueryString

本文关键字:QueryString 中的 Gridview 请求 | 更新日期: 2023-09-27 18:17:08

我有这个ImageButtonLabel在我的GridView

网格定义如下

<asp:TemplateField HeaderText="Send kwm">
    <ItemTemplate>
        <center>
            <asp:ImageButton ID="Sendkwm" runat="server" ImageUrl="/Images/check.gif"
                OnClick="Sendkwm" />
        </center>
    </ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
    <ItemTemplate>
        <center>
            <asp:Label ID="kwm" runat="server" Text='<%# Eval("kwm").ToString() %>'></asp:Label>
        </center>
    </ItemTemplate>
</asp:TemplateField>

我的问题是我需要使用kwm的querystring值来更新我要显示的数据列。

我在网上搜索,但似乎有必要使用GridView的SqlDataSource,有没有其他替代方法来做这个替代方法?

我的代码在后面。

任何帮助都将是感激的,提前谢谢你。

protected void Sendkwm(object sender, EventArgs e)
{
    using (OdbcConnection conn =
        new OdbcConnection(ConfigurationManager.ConnectionStrings["conn"].ConnectionString))
    {
        sql = " UPDATE doTable " +
               " SET myDate = CURRENT_TIMESTAMP () " +
               " WHERE " +
               "    kwm =  //here the querystring value of kwm// ; ";
        using (OdbcCommand command =
            new OdbcCommand(sql,conn))
        {
            try
            {
                command.Connection.Open();
                command.ExecuteNonQuery();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                command.Connection.Close();
            }
        }
    }
}

请求.Gridview中的QueryString

我会简单地使用隐藏代码,特别是GridViewRowDataBound -事件。这使得你的代码也更健壮,因为你得到了编译时的安全,它也更可读/可维护:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        ImageButton sendKwm =  (ImageButton) e.Row.FindControl("Sendkwm ");
        Label lblKwm = (Label) e.Row.FindControl("kwm");
        lblKwm.Text = Request.QueryString["kwm"]; 
    }
}

现在您可以通过以下方式获得ImageButton的点击事件处理程序中的值:

protected void Sendkwm(object sender, EventArgs e)
{
    ImageButton sendKwm = (ImageButton)sender;
    GridViewRow row = (GridViewRow) sendKwm.NamingContainer;
    Label lblKwm = (Label)row.FindControl("kwm");
    using (OdbcConnection conn = new OdbcConnection(ConfigurationManager.ConnectionStrings["conn"].ConnectionString))
    {
        string sql = @"UPDATE doTable 
                       SET myDate = CURRENT_TIMESTAMP()
                       WHERE kwm = @kwm;";
        using (OdbcCommand command = new OdbcCommand(sql, conn))
        {
            try
            {
                command.Parameters.AddWithValue("@kwm", lblKwm.Text);
                command.Connection.Open();
                command.ExecuteNonQuery();
            } catch (Exception ex)
            {
                throw ex;
            } finally
            {
                command.Connection.Close();
            }
        }
    }
}

还请注意,我已经使用sql参数来防止sql注入