ASP Add database records

Source: Internet
Author: User

<form name= "Form1" method= "Post" action= "" >
<label>
<input name= "UID" type= "text" id= "UID" >
</label>
User name
<p>
<label>
<input name= "pwd" type= "text" id= "pwd" >
</label>
Password
<input type= "hidden" name= "action" value= "Add" >
</p>
<p>
<label>
<input type= "Submit" name= "Submit" value= "Add" >
</label>
</p>
</form>
<%
' ASP Add database records
Dpath = "Www.111cn.net/dbasemateydbweb_^%$#@.mdb"
Set conn=server.createobject ("Adodb.connection")

If request. QueryString ("action") = "Add" Then
Set Rs =server.createobject ("Adodb.recordset")
conn.connectionstring= "Provider=Microsoft.Jet.OLEDB.4.0;Data source=" &server.mappath (Dpath)
Conn.Open
Dim SQL

sql = "SELECT * FROM Test"
Rs.Open sql,conn,1,3
Rs.addnew
RS ("UID") =request ("UID")
RS ("pwd") =request ("pwd")
Rs.update
Response. Write ("Data saved successfully")
End If

%>
<p> This article is original in www.111cn.net reprint annotated source </p>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.