如何在ancient ASP上调用外部文件的函数?

问题描述 投票:0回答:0

我有文件 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 总是在没有参数且没有调用(甚至没有回发)的情况下工作。我不明白为什么?

asp-classic
© www.soinside.com 2019 - 2024. All rights reserved.