|
|
|
Edit/Update การเขียน ASP.NET กับ MS SQL2005 ในการเรียกข้อมูลจากฐานข้อมูลมาแก้ไข ช่วยหน่อยครับ |
|
|
|
|
|
|
|
Code (C#)
void btnSave_Click(Object sender, EventArgs e)
{
strSQL = "UPDATE customer SET " +
" CustomerID = '"+ this.txtCustomerID.Text +"' " +
" ,Name = '"+ this.txtName.Text +"' " +
" ,Email = '"+ this.txtEmail.Text +"' " +
" ,CountryCode = '"+ this.txtCountryCode.Text +"' " +
" ,Budget = '"+ this.txtBudget.Text +"' " +
" ,Used = '"+ this.txtUsed.Text +"' " +
" WHERE CustomerID = '" + Request.QueryString["CustomerID"] + "' ";
objCmd = new SqlCommand();
objCmd.Connection = objConn;
objCmd.CommandText = strSQL;
objCmd .CommandType = CommandType.Text;
this.pnlAdd.Visible = false;
try
{
objCmd.ExecuteNonQuery();
this.lblStatus.Text = "Record Updated";
this.lblStatus.Visible = true;
}
catch (Exception ex)
{
this.lblStatus.Text = "Record can not update";
}
}
Go to : (C#) ASP.NET SQL Server Edit/Update Record
|
|
|
|
|
Date :
2012-11-21 16:10:01 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ เเละถ้าเราจะ สร้าง ปุ่ม delete ใน Repeater เหมือนปุ่ม edit เราจะทำยังไงหรอครับ มีเงื่อนไขอะ
|
|
|
|
|
Date :
2012-11-22 11:20:37 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|