To calculate the execution-time of a script.
User two variables where we stoer begin and end time of the script
Inizio = Timer()
'Inizio script
'.....
'Fine script
Fine = Timer()
Durata = Fine - Inizio
Response.Write "Execution time: " & Durata & " seconds !"
![]()