程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp添加數據庫記錄

asp添加數據庫記錄

編輯:關於ASP編程

    asp教程添加數據庫教程記錄
    <form name="form1" method="post" action="">
      <label>
      <input name="uid" type="text" id="uid">
      </label>
      用戶名
      <p>
        <label>
        <input name="pwd" type="text" id="pwd">
        </label>
      密碼
      <input type="hidden" name="action" value="add">
      </p>
      <p>
        <label>
        <input type="submit" name="Submit" value="增加">
        </label>
      </p>
    </form>
    <%
       asp添加數據庫記錄
      Dpath ="www.3lian.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("數據保存成功")
      end if
     
      %>

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved