无法在经典ASP中声明函数

时间:2017-12-14 22:56:00

标签: asp-classic

我需要使用winmm.dll API计算几个经典的ASP页面,但是当我把它放在ASP文件中时,我收到一个错误:

<%
Declare Function timeBeginPeriod Lib "winmm.dll" (ByVal uPeriod As Long) As Long
%>

,错误是:

Microsoft VBScript compilation  error '800a03ea' 

Syntax error 

/Default.asp, line 2 
Declare Function timeBeginPeriod Lib "winmm.dll" (ByVal uPeriod As Long) As Long
--------^

对于我到目前为止尝试的任何函数声明,抛出此错误,无论Declare Function后面是什么。我也尝试在Form_Load()内声明但没有成功。 PublicPrivate也无关紧要。

我做错了什么?

0 个答案:

没有答案