asp +access 数据保存插入代码

asp教程 +access 数据保存插入代码
if request.QueryString("ag")  then
 set conn=server.createobject("adodb.connection")
 conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("../skyj.mdb")
 ag=request.form("ag")
 amount=request.form("amount")
 name2=request.form("name")
 tel=request.form("tel")
 email=request.form("email")
 QQ=request.form("QQ")
 bolg=request.form("bolg")
 blank=request.form("blank")
 exec="insert into 订单(订单,数量,人名,电话,Email,QQ,博客,银行卡号)values('"+ag+"','"+amount+"','"+name2+"','"+tel+"','"+email+"','"+QQ+"','"+bolg+"','"+blank+"')"
 conn.execute exec
 conn.close
 set conn=nothing
end if
%>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.3lian.net/1999/xhtml">
<html>
<head>
<title>asp +access 数据保存插入代码</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="../05-17/example5.asp">
  <table width="70%" border="0">
    <tr>
      <td>产品
      <input type="text" name="ag"  value="">      </td>
      <td>数量 (斤)
      <input type="text" name="amount" value=""></td>
      <td>姓名
        <input type="text" name="name" value=""></td>
      <td>电话
         <input type="text" name="tel" value=""></td>
      <td>Email
         <input type="text" name="email" value=""></td>
      <td>QQ
         <input type="text" name="QQ" value=""></td>
      <td>博客<input type="text" name="bolg" value=""></td>
      <td>银行卡号<input type="text" name="blank" value=""></td>
    </tr>
  </table>
  <br>
  <br>
  <br>
  <input type="submit" name="Submit" value="提交">
  <input type="reset" name="Submit2" value="重置">
 
</form>
<br>
</body>
</html>
 

 

时间: 2024-11-01 13:48:51

asp +access 数据保存插入代码的相关文章

asp.net 临时数据保存实现代码_实用技巧

如果你感觉有用的话拷 走的时候顺便顶一下! 复制代码 代码如下: public MainPage() { InitializeComponent(); } PhoneApplicationService phoneAppService = PhoneApplicationService.Current; protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e) { phoneA

asp Access数据备份,还原,压缩类代码_数据库相关

<!--#include file="config.asp" --> <!--#include file="Fun.asp" --> <% '数据库管理类 class Datas '备份 public sub Bk() Set fso=server.createobject("scripting.filesystemobject") fso.CopyFile Server.MapPath(SiteDataPath),

asp Access数据备份,还原,压缩类代码

<!--#include file="config.asp" --> <!--#include file="Fun.asp" --> <% '数据库管理类 class Datas '备份 public sub Bk() Set fso=server.createobject("scripting.filesystemobject") fso.CopyFile Server.MapPath(SiteDataPath),

asp.net 数据类型转换类代码_实用技巧

复制代码 代码如下: using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace TypeClass { public class TypeParse { /// <summary> /// 判断对象是否为Int32类型的数字 /// </summary> /// <param name="Expr

asp代码实现access数据导出到excel文件

  asp代码实现access数据导出到excel文件: 一,下面是导出XLS格式 <%  dim referer  referer = Request.ServerVariables("HTTP_REFERER")  Dim CName,action  action=request.Form("action")  CName="../../Excel/"  dim daytime  'daytime=year(now())&&qu

flash+asp 提交保存数据到文本文件代码

flash+asp教程 提交保存数据到文本文件代码 as代码 ok.ok.onRelease = function () { if (x_bt.text != "" & x_wz.text != "") { showtime(); ms = "|" + timer + " " + x_bt.text + "@" + x_wz.text; txtload = new LoadVars(); txtlo

asp中网access数据库中插入数据乱码

问题描述 asp中网access数据库中插入数据乱码 <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> meta http-eq

asp连接SQL和Access数据代码(asp里的随机函数)_应用技巧

asp连接sql 第一种写法: 复制代码 代码如下: MM_conn_STRING = "Driver={SQL Server};server=(local);uid=sa;pwd=;database=infs;" Set conn = Server.Createobject("ADODB.Connection") conn.open MM_conn_STRING SET RS=SERVER.CreateObject("ADOBD.recordset&qu

asp连接SQL和Access数据代码(asp里的随机函数)

asp连接sql 第一种写法: 复制代码 代码如下: MM_conn_STRING = "Driver={SQL Server};server=(local);uid=sa;pwd=;database=infs;" Set conn = Server.Createobject("ADODB.Connection") conn.open MM_conn_STRING SET RS=SERVER.CreateObject("ADOBD.recordset&qu