How would you execute a sub from a location not within another sub?
<script runat="server">
sub FooBar(data)
do stuff with data
end sub
FooBar(varData)
</script>
The long answer to "Why would you want to do this?" is: I need to sub te
execute after all other subs and functions are executed, including, of
course, page_load.
Thanks,
Casey