| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 299 人关注过本帖
标题:[求助]注册程序出现错误。
只看楼主 加入收藏
liluzhi1985
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-10-6
收藏
 问题点数:0 回复次数:0 
[求助]注册程序出现错误。
strnote=request.form("note")
if strname="" then
response.write "帐号不能为空<p></p>"
%>
<a href=javascript:history.back()>上一页</a>
<%
response.end
end if //这行出现错误,说什么Microsoft VBScript 编译器错误 (0x800A0400)缺少语句

if strpassword1="" then
response.write "密码不能为空<p></p>"
%>
<a href=javascript:history.bakc()>上一页</a>
<%
Response.end
end if
if strpassword1=strpassword2 then
strpassword=strpassword1
else
response.write "确认两次密码一致<br><br>"
%>
<a href=javascript:history.back()>上一页</a>
<%
response.end
end if
strsql="select * from user where username='" & strname & "'"
strdsn="dsn=bbs;uid=feng;pwd=feng"
set rs=server.createobject("adodb.recordset")
rs.open strsql,strdsn,1,3
if not (rs.eof and rs.eof) then
response.write "你所用的帐号已经存在,请发变帐号<br><br>"
%>
<a href=javascript:history.back()>上一页</a>
<%
response.end
end if
rs.close
set rs=nothing
strtable="user"
strdsn="dsn=bbs;uid=feng;pwd=feng"
set rs=server.createobject("adodb.recordset")
rs.open strtable,strdsn,1,3
rs.addnew
rs("username")=strname
rs("userpassword")=strpassword1
rs("useremail")=stremail
rs("userhomepage")=strhomepage
rs("usernote")=strnote
rs.update
rs.close
set rs=nothing
response.write "祝贺你,你已经申请成功"
%>
<br><a href="http://fang/bbs/">返回</a>



请问各位怎么解决这个问题啊?
搜索更多相关主题的帖子: 注册 
2007-10-06 13:42
快速回复:[求助]注册程序出现错误。
数据加载中...
 
   



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

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