CassidyHunt
IS-IT--Management
Is there a way in XSL to do this:
What my situation is I am running through a loop of data that I need to gather into one variable and print in a hidden element on a webpage. Then I will take my javascript and analyze it in an array.
I guess what I am lacking is to be able to modify a variable and keep the existing data stored in it.
Thanks
Cassidy
Code:
dim str as string
dim i as integer
for i = 0 to 10
str = str & i & ";"
next
What my situation is I am running through a loop of data that I need to gather into one variable and print in a hidden element on a webpage. Then I will take my javascript and analyze it in an array.
I guess what I am lacking is to be able to modify a variable and keep the existing data stored in it.
Thanks
Cassidy