Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 .asp 页面(abc1.asp,abc2.asp)。我想从abc1.asp页面中的abc2.asp调用函数。怎么做?
创建第三个文件,可能称为 functions.asp - 将您的函数放入其中,然后通过包含文件语句将其包含在 abc1.asp 和 abc2.asp 中 - 见下文
<!--#include file="functions.asp"-->