Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
ASP.NET

Functions and Procedures in Classic ASP

Write Function (returns value) and Sub (no return) routines.

Functions and Procedures in Classic ASP — a practical guide to Classic ASP functions with clear examples you can reuse in real projects.

ASP & ASP.NET Tutorial Series (13/247). Prefer one article? Read the complete ASP.NET tutorial.

Short description

Prefer includes for shared helpers.

Function

Function Add(a, b)
  Add = a + b
End Function