DetailsView ช่วยด้วยครับ textbox ไม่แสดงค่าในฐานข้อมุลครับ ไม่รู้ว่าเป็นที่อะไรครับ ลองหลายแบบ ก็ยังไม่หายครับ
Code (VB.NET)
Sub myDetailsView_ModeChanging(sender As Object, e As DetailsViewModeEventArgs)
Select Case e.NewMode
Case DetailsViewMode.Edit
myDetailsView.ChangeMode(DetailsViewMode.Edit)
Case DetailsViewMode.ReadOnly
myDetailsView.ChangeMode(DetailsViewMode.ReadOnly)
End Select
BindData()
End Sub
Go to : ASP.NET DetailsView Control - Edit/Update
Date :
2011-08-20 06:54:44
By :
webmaster
ผมลองพิมพ์ตาม ที่ให้มาแล้วครับ มันไป error ตรง sql ครับ Syntax error in UPDATE statement.
โค้ดครับ ทำตามเหมือนข้างบนที่ให้มาเลยครับ ไม่รู้ว่าผิดตรงไหนครับ
Code (ASP)
strsql = "UPDATE Student SET " & _
" stu_name='" & txtname.Text & "', " & _
" Surname='" & txtsurname.Text & "', " & _
" birthday='" & txtbirthday.Text & "', " & _
" age='" & txtage.Text & "', " & _
" level='" & txtlevel.Text & "', " & _
" nameschool='" & txtschool.Text & "', " & _
" adddress='" & txtschool.Text & "', " & _
" tel='" & txttel.Text & "', " & _
" email='" & txtemail.Text & "', " & _
" father='" & txtfather.Text & "', " & _
" mather='" & txtmather.Text & "' " & _
"WHERE id_dent=" & Request.QueryString("ID")
Date :
2011-08-20 07:55:47
By :
tom789
Load balance : Server 02