How to use ASP & SQL Server Edit/Update Rows Data This is tutorial asp developers how to using ASP edit/update data on SQL Server table.
ShotDev Focus:
- ASP & SQL Server edit/update data.
Example
asp_sqlserver_edit1.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim Conn,strSQL,objRec Set Conn = Server.Createobject("ADODB.Connection") Conn.Open "Driver={SQL Server};Server=localhost;Database=mydatabase;UID=sa;PWD=;" strSQL = "SELECT * FROM customer " Set objRec = Server.CreateObject("ADODB.Recordset") objRec.Open strSQL, Conn, 1,3 %> <table width="600" border="1"> <tr> <th width="91"> <div align="center">CustomerID </div></th> <th width="98"> <div align="center">Name </div></th> <th width="198"> <div align="center">Email </div></th> <th width="97"> <div align="center">CountryCode </div></th> <th width="59"> <div align="center">Budget </div></th> <th width="71"> <div align="center">Used </div></th> <th width="71"> <div align="center">Edit </div></th> </tr> <% While Not objRec.EOF %> <tr> <td><div align="center"><%=objRec.Fields("CustomerID").Value%></div></td> <td><%=objRec.Fields("Name").Value%></td> <td><%=objRec.Fields("Email").Value%></td> <td><div align="center"><%=objRec.Fields("CountryCode").Value%></div></td> <td align="right"><%=objRec.Fields("Budget").Value%></td> <td align="right"><%=objRec.Fields("Used").Value%></td> <td align="center"><a href="asp_sqlserver_edit2.asp?CusID=<%=objRec.Fields("CustomerID").Value%>">Edit</a></td> </tr> <% objRec.MoveNext Wend %> </table> <% objRec.Close() Conn.Close() Set objRec = Nothing Set Conn = Nothing %> </body> </html>
asp_sqlserver_edit2.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form action="asp_sqlserver_edit3.asp?CusID=<%=Request.QueryString("CusID")%>" name="frmEdit" method="post"> <% Dim Conn,strSQL,objRec Set Conn = Server.Createobject("ADODB.Connection") Conn.Open "Driver={SQL Server};Server=localhost;Database=mydatabase;UID=sa;PWD=;" strSQL = "SELECT * FROM customer WHERE CustomerID = '"&Request.QueryString("CusID")&"' " Set objRec = Conn.Execute(strSQL) If objRec.EOF Then Response.write("Not found CustomerID="&Request.QueryString("CusID")) Else %> <table width="600" border="1"> <tr> <th width="91"> <div align="center">CustomerID </div></th> <th width="160"> <div align="center">Name </div></th> <th width="198"> <div align="center">Email </div></th> <th width="97"> <div align="center">CountryCode </div></th> <th width="70"> <div align="center">Budget </div></th> <th width="70"> <div align="center">Used </div></th> </tr> <tr> <td><div align="center"><input type="text" name="txtCustomerID" size="5" value="<%=objRec.Fields("CustomerID")%>"></div></td> <td><input type="text" name="txtName" size="20" value="<%=objRec.Fields("Name")%>"></td> <td><input type="text" name="txtEmail" size="20" value="<%=objRec.Fields("Email")%>"></td> <td><div align="center"><input type="text" name="txtCountryCode" size="2" value="<%=objRec.Fields("CountryCode")%>"></div></td> <td align="right"><input type="text" name="txtBudget" size="5" value="<%=objRec.Fields("Budget")%>"></td> <td align="right"><input type="text" name="txtUsed" size="5" value="<%=objRec.Fields("Used")%>"></td> </tr> </table> <input type="submit" name="submit" value="submit"> <% End IF objRec.Close() Conn.Close() Set objRec = Nothing Set Conn = Nothing %> </form> </body> </html>
asp_sqlserver_edit3.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim Conn,strSQL,objExec Set Conn = Server.Createobject("ADODB.Connection") Conn.Open "Driver={SQL Server};Server=localhost;Database=mydatabase;UID=sa;PWD=;" strSQL = "UPDATE customer SET " strSQL = strSQL&"CustomerID = '"&Request.Form("txtCustomerID")&"' " strSQL = strSQL&",Name = '"&Request.Form("txtName")&"' " strSQL = strSQL&",Email = '"&Request.Form("txtEmail")&"' " strSQL = strSQL&",CountryCode = '"&Request.Form("txtCountryCode")&"' " strSQL = strSQL&",Budget = '"&Request.Form("txtBudget")&"' " strSQL = strSQL&",Used = '"&Request.Form("txtUsed")&"' " strSQL = strSQL&"WHERE CustomerID = '"&Request.QueryString("CusID")&"' " Set objExec = Conn.Execute(strSQL) If Err.Number = 0 Then Response.write("Save completed.") Else Response.write("Error Save ["&strSQL&"] ("&Err.Description&")") End IF Conn.Close() Set objExec = Nothing Set Conn = Nothing %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_sqlserver_edit1.asp
Screenshot