|
|
|
การดึง ID มาจาก ตาราง หนึ่ง ให้ปรากฎอยูใน Texbox เเล้ว พอเพิมก็ให้เพิม ID ลงไปในอีกตางรางครับเข้าทำยังไงครับ |
|
|
|
|
|
|
|
ถ้ามีผิดพลาดอะไร ต้องขออภัยด้วยครับ พอดีเครื่อง ไม่ได้ติดตั้ง IIS รอผู้รู้มาตอบอีกทีครับ ^_^
Form.asp ดูเพิ่มเติมจากนี่ครับ https://www.thaicreate.com/asp/asp-mysql-add-insert-record.html
Code (ASP)
<% Option Explicit %>
<html>
<head>
</head>
<body>
<%
Dim Conn,strSQL,objRec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER={MySQL ODBC 5.1 Driver}; SERVER=localhost;UID=root; " & _
"pwd=root;database=mydatabase;option=16384;"
strSQL = "SELECT * FROM account_num "
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open strSQL, Conn, 1,3
%>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">Pass_income </div></th>
<th width="98"> </th>
</tr>
<%
While Not objRec.EOF
%>
<tr>
<form action="Add.asp?ID_=<%=objRec("ID")%>" method="post" id="frm<%=objRec("ID")%>" name="frn<%=objRec("ID")%>">
<td><input name="txtPass_income" type="text" value="<%=objRec.Fields("Pass_income").Value%>"></td>
<td><input name="submit" type="submit" value="Submit" /></td>
</form>
</tr>
<%
objRec.MoveNext
Wend
%>
</table>
<%
objRec.Close()
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
</body>
</html>
Add.asp ดูเพิ่มเติมจากนี่ครับhttp:// www.thaicreate.com/asp/asp-mysql-add-insert-record.html
Code (ASP)
<% Option Explicit %>
<html>
<head>
</head>
<body>
<%
Dim Conn,strSQL,objExec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER={MySQL ODBC 5.1 Driver}; SERVER=localhost;UID=root; " & _
"pwd=root;database=mydatabase;option=16384;"
strSQL = ""
strSQL = strSQL &"INSERT INTO income "
strSQL = strSQL &"(ID,Pass_income) "
strSQL = strSQL &"VALUES "
strSQL = strSQL &"("&Request("ID_")&", '"&Request.Form("txtPass_income")&"') "
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>
</html>
|
ประวัติการแก้ไข 2012-08-15 10:08:02 2012-08-15 10:08:37
|
|
|
|
Date :
2012-08-15 10:05:51 |
By :
pong_757 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|