 |
|
จากโค้ดข้างล่างนี้ เป็นโค้ดที่เขียนขึ้นเพื่อเก็บคำตอบจากแบบสอบถาม แต่ต้องการให้มีการเก็บ IP Address ของผู้ตอบด้วย รบกวนพี่ๆช่วยทีค่ะ
code (asp.net 2005)
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myconn As New OleDbConnection _
("Provider=Microsoft.Jet.OLEDB.4.0 ;Data Source=" & _
Server.MapPath("App_Data\Noveldc.mdb"))
myconn.Open()
Dim mycommand As New OleDbCommand _
("INSERT INTO QuestionnaireTable(No01,No02,No03,No04,No05,No06,No07,No08,No09,No10) " & _
" VALUES ('" & RList1.Text & "','" & RList2.Text & "','" & _
RList3.Text & "','" & RList4.Text & "','" & _
RList5.Text & "','" & RList6.Text & "','" & _
RList7.Text & "','" & RList8.Text & "','" & _
RList9.Text & "','" & RList10.Text & "')", myconn)
mycommand.ExecuteNonQuery()
myconn.Close()
RList1.Text = Nothing
RList2.Text = Nothing
RList3.Text = Nothing
RList4.Text = Nothing
RList5.Text = Nothing
RList6.Text = Nothing
RList7.Text = Nothing
RList8.Text = Nothing
RList9.Text = Nothing
RList10.Text = Nothing
End Sub
ลงฐานข้อมูลนี้ค่ะ

Tag : - - - -
|
|
 |
 |
 |
 |
Date :
2009-08-14 17:26:17 |
By :
piaro |
View :
1875 |
Reply :
2 |
|
 |
 |
 |
 |
|
|
|
 |