Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
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?
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 & ", "