验证码问题,高手进
现在我注册页面和保存页面放在不同服务器,验证码就出问题了.
<form action=http://www.****.com/ysave.asp method=post name=regform>
......
<img src="htttp://www.****.com/ycode.asp>
<input type=text name=yzm>
...
</form>
注册页面
if session("yzm")<>request("yzm") then
response.write "<script>alert('错');location.href='http://www.aaa.com/zc.asp';</script>"
response.end
end if
第一次提交总是显示验证码错误,第二次就OK了.
原因是什么?