<%
fromwho=trim(request.form("fromwho"))
towho=trim(request.form("towho"))
subject=trim(request.form("subject"))
body=trim(request.form("body"))
if towho<>"" then
set mymail=server.createobject("CDONTS.Newmail")
mymail.From=fromwho
mymail.To=towho
mymail.Subject=subject
mymail.Body=body
mymail.Send
set mymail=Nothing
response.write "成功"
else
response.write "收信人不能为空,请<a href=javascript:window.history.back(-1)>返回</a>重新填写!"
response.end
end if
%>
错误类型:
Microsoft VBScript 运行时错误 (0x800A01B6)
对象不支持此属性或方法: 'server.serverVariables'