<%@ LANGUAGE = JScript %> Functions Server Side Functions

The function "PrintOutMsg" prints out a specific message a set number of times.

<% var intTimes ; //Call Function. intTimes = PrintOutMsg("This is a function test!", 4); //Output the function return value. Response.Write("

The function printed out the message " + intTimes + " times."); %>