我有文件 Login.ASP,如果我将函数定义附加到文件末尾
.....
GoogleVerify = Recaptcha_confirm(Request.Form("g-recaptcha-response"))
.....
<%
function Recaptcha_confirm(Token)
....
end function
%>
一切正常。但我想将此功能作为单独的文件 Recaptcha.asp 提取到根目录,并希望接收此页面结构
.....
GoogleVerify = Recaptcha_confirm(Request.Form("g-recaptcha-response"))
.....
<!--#include file="../Recaptcha.asp" -->
不幸的是,在这种情况下,文件 Recaptcha.asp 中的函数 Recaptcha_confirm 总是在没有参数且没有调用(甚至没有回发)的情况下工作。我不明白为什么?