S
sunrainso
Unregistered / Unconfirmed
GUEST, unregistred user!
看看下面的程序,这是一个会员注册的小程序,我点了提交后,他显示源代码,不显示结果不知道是程序的问题,还是ISS的问题,我觉得ISS都配置好了,其他的ASp程序都好好的,没出错,就这个老是出错!不知道那位能帮帮我撒!
<%@ language=VbScrip%>
<%option explicit
dim username,password,sex,tel,menu1,address,youbian,Email
dim founderr,errmsg
founderr=false
username=request.form("username")
if username="" then
founderr=true
errmsg=errmsg &"姓名不能为空!"
end if
password=request.form("password")
if password="" then
founderr=true
errmsg=errmsg &"密码不能为空!"
end if
address=request.form("address")
if address="" then
founderr=true
errmsg=errmsg &"请填写你的联系地址!"
end if
youbian=request.form("youbian")
if youbian="" then
founderr=true
errmsg=errmsg &"请填写邮政编码!"
end if
Email=request.form("Email")
if Email="" then
founderr=true
errmsg=errmsg &"请填写你的Emai地址!"
end if
if founderr then
response.write errmsg
%>
。。。。。
中间是超文本程序
。。。。。
<%else
dim connstr,rs,sql
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "provider=microsoft.jet.oledb.4.0;data source="&server.mappath("Data.mdb")
set rs= Server.CreateObject("ADODB.Recordset")
rs.open "select * from Reg",oConn
if rs.eof =true then
rs.movelast
end if
rs.addnew
rs("姓名")=userName
rs("密码")=password
rs("性别")=sex
rs("省份")=address
rs("邮编")=youbian
rs("Email")=Email
rs.update
rs.close
conn.close
set conn=nothing
set rs=nothing
%>
<script language="javascript">
alert("你的用户注册成功!谢谢!")
do
cument.loction="index.html"
</script>
<%end if%>
<%@ language=VbScrip%>
<%option explicit
dim username,password,sex,tel,menu1,address,youbian,Email
dim founderr,errmsg
founderr=false
username=request.form("username")
if username="" then
founderr=true
errmsg=errmsg &"姓名不能为空!"
end if
password=request.form("password")
if password="" then
founderr=true
errmsg=errmsg &"密码不能为空!"
end if
address=request.form("address")
if address="" then
founderr=true
errmsg=errmsg &"请填写你的联系地址!"
end if
youbian=request.form("youbian")
if youbian="" then
founderr=true
errmsg=errmsg &"请填写邮政编码!"
end if
Email=request.form("Email")
if Email="" then
founderr=true
errmsg=errmsg &"请填写你的Emai地址!"
end if
if founderr then
response.write errmsg
%>
。。。。。
中间是超文本程序
。。。。。
<%else
dim connstr,rs,sql
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "provider=microsoft.jet.oledb.4.0;data source="&server.mappath("Data.mdb")
set rs= Server.CreateObject("ADODB.Recordset")
rs.open "select * from Reg",oConn
if rs.eof =true then
rs.movelast
end if
rs.addnew
rs("姓名")=userName
rs("密码")=password
rs("性别")=sex
rs("省份")=address
rs("邮编")=youbian
rs("Email")=Email
rs.update
rs.close
conn.close
set conn=nothing
set rs=nothing
%>
<script language="javascript">
alert("你的用户注册成功!谢谢!")
do
cument.loction="index.html"
</script>
<%end if%>