INTELLIGENT WORK FORUMS FOR COMPUTER PROFESSIONALS
Come Join Us!
- Talk With Other Members
- Be Notified Of Responses
To Your Posts
- Keyword Search
- Turn Off Ad Banners
- One-Click Access To Your
Favorite Forums
- Automated Signatures
On Your Posts
- Best Of All, It's Free!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.
Partner With Us!
"Best Of Breed" Forums Add Stickiness To Your Site

(Download This Button Today!)
Member Feedback
"...Keep up the good work - excellent site - i'd been looking for something like this for ages !..."
Geography
Where in the world do Tek-Tips members come from?
|
Microsoft: Active Server Pages (ASP) FAQ
|
ASP 101
|
how can you create a asp function in a separate file ?
Posted: 5 Jun 02
|
Firstly you need to create a dedicated asp file, which contain the code of the function :
----------------------myFunction.asp----------------------- <%function square_calc(args)
args=args*args
square_calc = args 'return the value of args %> ----------------------------------------------------------
In the asp pages(example.asp) where you call the function you just need to include it and you can call simply the function
-----------------------example.asp------------------------ <!-- #INCLUDE FILE="MyFunction.asp" -->
<HTML> <HEAD><TITLE> An example of a function calling </TITLE> </HEAD> <BODY>
the square of 3 is <%response.write square_calc(3)%>
</BODY></HTML>
-----------------------------------------------------------
It s done, you can add now different function in the Myfunction.asp page and call it as you want.
|
Back to Microsoft: Active Server Pages (ASP) FAQ Index
Back to Microsoft: Active Server Pages (ASP) Forum
My FAQ Archive
Email This FAQ To A Friend |
|
 |
|