LikeThisName
Vendor
basically i would like to write a function that returns a string. (a long string)
i need to be able to call my function like this.
response.write myFunction(someInteger)
Code:
function myFunction(myInt as integer) as string
dim mystring
mystring =""
for x=0 to myInt
mystring = mystring & str(myInt) & vbcrlf
next
return mystring
end function
TIA,
LikeThisName <- ? Sorry It's Taken =)