Do I need Carriage Returns (not familiar with it)? Currently this is how my JavaScript string is being built:
allcars = cars + makes;
Unfortunately, when I get to my Split function call (that I rather should not change), it does not split my JavaString back apart into an array:
CarsList = Split(Request("allcars"),vbCrLf)
When the Split function call gets string coming from a different source, it splits such string correctly (unlike with string from my JavaScript function).
cars? What is the content ofmakes? What result do you expect after the split? Please provide examples.