Forum Moderators: open
I am doing a simple ASP app and I need to remove the tabs from some data that has been passed. I know the usual structure is:
Result = Replace(PassedData, CharacterToRemove, CharacterToReplace)
To eliminate single quotes I use
Result = Replace(PassedData, Chr(13), "") or something like that
However, I can't seem to find the code for a tab anywhere. Does anyone know it or know where I can find it.
Chris