发布网友 发布时间:2024-12-17 02:53
共2个回答
热心网友 时间:3分钟前
<!--#include file="conn.asp"--> '连接数据库
<%
set rs=server.createobject("adodb.recordset")
rs.open "select id from 表名 where 字段名='" & request.Form("字段名") & "'",conn ‘判断是否输入重复
if not rs.eof then
%>
<script language="javascript">
<!--
alert("您输入的信息已存在,请重新输入!")
history.go(-1);
-->
</script>
<%
else
rs.close
rs.open "select top 1 * from 表名",conn,1,3
rs.addnew
rs("#")=request.Form("#") '#为对应字段名
rs("#")=request.Form("#")
rs("#")=request.Form("#")
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<script language="javascript">
<!--
alert("添加成功!自动返回信息添加页")
location.href='信息添加页名称' '决定添加信息后刷新添加页
-->
</script>
<%
end if
%>
如果还有问题请联系群32872169 共同探讨!
热心网友 时间:4分钟前
用一个隐藏域或者form的action值加参数,以区分是不是二次提交.
<html>
<%
if action<>"" then
数据写入表
end if
%>
打开表 ,读取记录,数据展示
<form action=?action=1 method=post>
...
</form>
<html>