ถามเรื่องการเก็บ IP Address ของผู้ที่มาตอบแบบสอบถาม ลงใน Access ค่ะ
จากโค้ดข้างล่างนี้ เป็นโค้ดที่เขียนขึ้นเพื่อเก็บคำตอบจากแบบสอบถาม แต่ต้องการให้มีการเก็บ 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 :
1850
Reply :
2
Code (ASP)
<%
Dim srv_client_ip : srv_client_ip = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If srv_client_ip="" Then srv_client_ip = Request.ServerVariables("REMOTE_ADDR")
%>
เอาตัวแปร srv_client_ip ไปใช้ครับ
Date :
2009-08-15 10:34:23
By :
luecha
เคยใช้ goip
Date :
2009-08-18 10:18:01
By :
Joe_Dev
Load balance : Server 05