|
|
|
รบกวนสอบถามการเก็บข้อมูลจาก form ลง data base จะทำการให้ข้อมูลลง data base อย่างไหรครับ |
|
|
|
|
|
|
|
ASP นี่ง่ายมากเลยครับ อ่านเพิ่มเติมบทความนี้ครับ
Code (PHP)
<%
Dim Conn,strSQL,objExec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "Driver={SQL Server};Server=localhost;Database=mydatabase;UID=sa;PWD=;"
strSQL = ""
strSQL = strSQL &"INSERT INTO customer "
strSQL = strSQL &"(CustomerID,Name,Email,CountryCode,Budget,Used) "
strSQL = strSQL &"VALUES "
strSQL = strSQL &"('"&Request.Form("txtCustomerID")&"','"&Request.Form("txtName")&"', '"&Request.Form("txtEmail")&"' "
strSQL = strSQL &",'"&Request.Form("txtCountryCode")&"','"&Request.Form("txtBudget")&"', '"&Request.Form("txtUsed")&"') "
Set objExec = Conn.Execute(strSQL)
If Err.Number = 0 Then
Response.write("Save Done.")
Else
Response.write("Error Save ["&strSQL&"] ("&Err.Description&")")
End If
Conn.Close()
Set objExec = Nothing
Set Conn = Nothing
%>
</body>
ASP SQL Server Add/Insert Record
|
|
|
|
|
Date :
2013-06-25 09:32:38 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ไฟล์ตัวอย่างนี้ผมสร้างไฟล์ใใหม่เช่น connect ได้เลยใช่ไหมครับ
|
|
|
|
|
Date :
2013-06-25 09:37:51 |
By :
jumloon2005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี code ตัวอย่างการเพิ่มข้อมูลไหมครับ
|
|
|
|
|
Date :
2013-06-25 11:33:29 |
By :
jumloon2005 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ตัวอย่างอีก 1 ตัว
|
|
|
|
|
Date :
2014-06-10 16:04:31 |
By :
aumaim2535 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|