标题:asp 写入数据库问题
只看楼主
kuku1937
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-6-15
 问题点数:0 回复次数:2 
asp 写入数据库问题
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<%
sub putin()
set conn=server.createobject("adodb.connection")
conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&server.mappath("client.mdb")
set rs=Server.createobject("adodb.recordset")
rs.open"select * from userinfo",conn,1,2
rs.addnew
rs("surname")=request("surname")
rs.update
rs.close
conn.close
set rs=nothing
set conn=nothing
end sub
%>
</head>
<body>
<input name="btn1" type="button" value=" 提交 " onClick="call putin">
</body>
</html>

点击“提交”按钮,数据没有写入数据库!怎么回事?高手教一下

如果删除 sub putin()和end sub 两句,数据库写入正常,当然“提交”无用了,ft啊!
搜索更多相关主题的帖子: html content blank PUBLIC target 
2006-06-15 17:31
icecool
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:20
帖 子:1214
专家分:1366
注 册:2005-3-14
得分:0 

这样当然不行的,
你函数是服务器行,而提效ONCLICK客户端行为.
VBS和JS区别


http://toorup.3v.do
loading...
2006-06-15 19:07
huxianxiang
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2005-12-26
得分:0 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<%
dim aaa
set conn=server.createobject("adodb.connection")
conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&server.mappath("client.mdb")
aaa=request.form("surname")
if aaa<>"" then
conn.execute "insert into userinfo(surname) values('" & aaa & "')"
end if
conn.close
set conn=nothing
%>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="surname" />
<input type="submit" name="Submit" value="添加" />
</form>
</body>
</html>

[此贴子已经被作者于2006-6-16 17:09:59编辑过]


2006-06-16 17:08



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-72556-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.283109 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved