ASP“调用 Sub 时不能使用括号”

发布于 2024-11-17 14:26:08 字数 404 浏览 3 评论 0原文

可能的重复:
调用 Sub 时不能使用括号

据我所知是正确的,但我收到错误“调用 Sub 时无法使用括号” 以前从未使用过 ASP...有人可以帮我解释一下这个问题吗?代码:

<%TESTWeb1.RecentlyViewedDisplay("Recently Viewed Header","Recently Viewed Entry","Recently Viewed Group Entry")%>

Possible Duplicate:
Cannot use parentheses when calling a Sub

As far as I am aware this is correct but i get the error "Cannot use parentheses when calling a Sub"
Never used ASP before...can anyone shed light o nthe issue for me? code:

<%TESTWeb1.RecentlyViewedDisplay("Recently Viewed Header","Recently Viewed Entry","Recently Viewed Group Entry")%>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星星的軌跡 2024-11-24 14:26:08

在 VB6 类型语言中,仅在调用函数或使用 Call 关键字调用子函数时才需要括号。

例如,

DoSoemthing "foo","baa"

Call DoSomething("foo","baa")

myVar = DoSomething("foo","bar")

我认为在您的情况下,从调用中取出括号应该可以工作(尽管我无法检查,因为我没有方便的 ASP 配置环境。

In VB6 type languages you only need parentheses when calling a function, or when calling a sub using the Call keyword.

e.g.

DoSoemthing "foo","baa"

Call DoSomething("foo","baa")

myVar = DoSomething("foo","bar")

I think in your case taking the parentheses out of the call should work (although I can't check as I don't have an ASP configured environment handy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文