Microsoft JET Database Engine (0x80040E57)溢出??[已自行解决]
做留言板,添加留言,有时正常,有时出现下面错误,请各位老师指点!谢谢!错误类型:
Microsoft JET Database Engine (0x80040E57)
溢出
............第42行
<%
If Trim(Request.Form("validatecode"))=Empty Or Trim(Session("))<>Trim(Request.Form("validatecode")) Then
response.write"<script>alert('对不起,请输入正确的验证码!');history.back();</Script>"
response.end()
end if
%>
<!--#include file="../conn.asp" -->
<%
name=request("name")
tel=request("tel")
chuanz= request ("chuanz")
xx=request("xx")
bt=request("bt")
content=request("content")
if name="" then
response.write("<script>alert('请填写您的姓名!');window.history.back();</script>")
response.end() '结束运行
end if
if tel="" then
response.write("<script>alert('请填写您的联系电话!');window.history.back();</script>")
response.end() '结束运行
end if
if xx="" then
response.write("<script>alert('请填写您的信箱!');window.history.back();</script>")
response.end() '结束运行
end if
if bt="" then
response.write("<script>alert('请您填写标题!');window.history.back();</script>")
response.end() '结束运行
end if
if content="" then
response.write("<script>alert('请填写您的留言!');window.history.back();</script>")
response.end() '结束运行
end if
........第42行
conn.execute("insert into ly([name],[tel],[chuanz],[xx],[bt],[content]) values('"&name&"','"&tel&"','"&chuanz&"','"&xx&"','"&bt&"','"&content&"')")
'添加到数据库完成。
response.write("<script>alert('留言成功!');location.href='../index.asp'</script>")
conn.close
set conn=nothing
%>
[ 本帖最后由 tepnidh 于 2012-2-24 09:30 编辑 ]