get-value of like-named form input with commas?

David Rosen

New Member
I have a form with multiple textarea forms all named "txtNotes". When I use get-value("txtNotes") it builds a comma delimited string of all values. But if a comma is part of the textarea value it throws off the index using the ENTRY() function. Is there a way to either escape the commas in the values when using get-value? Or possibly use a different delimiter?
 
Rather than try to mess around with changing the delimiter (which I don't think you can do anyway) or escaping the commas (prior to the submit of the form) why not just rename your text areas? e.g. txtNotes1, txtNotes2, txtNotes3......

Lee
 
Back
Top