|
|
|
อยากทราบวิธีการเขียนโค้ดด้วย asp.net(vb.net) เกี่ยวกับการ delete row ของ gridview โดยใช้ event rowdeleted อะคะ รบกวนผู้รู้หน่อยคะ |
|
|
|
|
|
|
|
ตัวอย่างนี้ครับ
Code (C#)
void modDeleteCommand(Object sender, GridViewDeleteEventArgs e)
{
strSQL = "DELETE FROM customer WHERE CustomerID = '" + myGridView.DataKeys[e.RowIndex].Value + "'";
objCmd = new OleDbCommand(strSQL, objConn);
objCmd.ExecuteNonQuery();
myGridView.EditIndex = -1;
BindData();
}
Go to : (C#) ASP.NET GridView Control - RowCommand
มีทั้ง VB.NET และ C# ครับ
|
|
|
|
|
Date :
2012-08-27 17:25:41 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|