本文介绍了需要帮助进行asp.net编码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在网格中编辑数据,即编辑网格行.
用什么写:

How to edit data in a grid i.e. editing grid row.
What to write in:

protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)


请回复.


Please reply.

推荐答案


protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
string DesgId=GridView1.DataKeys[e.RowIndex].Value.ToString();
TextBox txtDesg = (TextBox)DesigGrdView.Rows[e.RowIndex].Cells[0].Controls[0];
Sqlcommand cmd=new Sqlcommand ("your Query",con);
con.Open();
cmd.ExcuteNonQuery();
con.close();
GridView1.EditIndex=-1;
BindGridView();
 }


这篇关于需要帮助进行asp.net编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 09:06