大虾帮忙啊!为什么我这段程序总是出错?谢谢!!
..........................
elseif doparam="pass" then '验证
dim rs5
Set rs5 = userconn.Execute( "update personalinfo set pass='y' Where id=" & param )
Response.Write "已经通过验证!"
dim email,emailrs
set emailrs=myconn.execute("select name,email from personalinfo where id="¶m )
if not emailrs.eof then
email=emailrs.fields("eamil").value
name=emailrs.fields("name").value
dim ojmail
Set oJmail=Server.CreateObject("Jmail.Message")
oJmail.Silent=True
oJmail.From="market@myboll.com"
oJmail.FromName="美宝网"
oJmail.AddRecipient (email)
oJmail.Subject="您的注册信息已经通过美宝网(http://www.myboll.com)验证!"
oJmail.Body=name&",您好:"&vbCrLf&vbCrLf&"您已经通过美宝网(http://www.myboll.com)验证。欢迎登陆美宝网获得所有在线支援。"&vbCrLf&"http://www.myboll.com 美宝网"
oJmail.Send("Mail.myboll.com")
end if
else
Response.Write "调用错误!"
end if
我这段程序总是提示set emailrs=myconn.execute("select name,email from personalinfo 这句缺少对象: ''
为什么啊?望各位大虾不惜指教啊。