Joining text strings in ASP
-
What is the proper syntax for joining text strings together. I want to add a .txt to the end of a variable so that I can point to it as a file name. namePrefix = "catalog" Filename = join(namePrefix, ".txt") this isn't working so I must not have the correct syntax. If any one knows what it is I'd be very greatful. __________________
-
What is the proper syntax for joining text strings together. I want to add a .txt to the end of a variable so that I can point to it as a file name. namePrefix = "catalog" Filename = join(namePrefix, ".txt") this isn't working so I must not have the correct syntax. If any one knows what it is I'd be very greatful. __________________
Filename = namePrefix & ".txt" Best regards, J. Paul Schmidt - ASP Web Developer http://www.Bullschmidt.com - To put live data on the Web...