Reputation: 41
I have two .asp pages(abc1.asp,abc2.asp). I want to call function from abc2.asp in abc1.asp pages.How to do it?
Upvotes: 1
Views: 4270
Reputation: 4638
Create a third file, maybe called functions.asp - put your functions in that then include it in abc1.asp and abc2.asp by means of an include file statement - see below
<!--#include file="functions.asp"-->
Upvotes: 4