Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
' strTextLine would be you FSO line
strTextLine = "This is a test.#~This is also a test.#~This, as well, is a test.#~A test, is this."
Dim arrTemp
Dim maxCount
Dim i
arrTemp = Split(strTextLine,"#~")
maxCount = UBound(arrTemp)
For i = 0 to maxCount
Response.Write "Index " & i & ": " & arrTemp(i) & "<br>"
' here instead you could pass each individual array value into the proper variable
Next
%>