This topic is locked

Space between comma separated values

4/17/2009 1:07:32 PM
ASPRunnerPro General questions
G
gwr477 author

If I select multiple values using a drop down list, the resulting values show in the database with a comma separating each value. I need to place a space after a comma and before the next value. Can that be done?

J
Jane 4/20/2009

Hi,
to add whitespace between values edit DisplayLookupWizard function in the generated include/commonfunctions.asp file.

Find this line:

out = out & ","


and replace it with this one:

out = out & ", "