RE: Remove special chars to pass in URL

2004-03-17 Thread Bernd VanSkiver
Look at the URLEncodedFormat() function. Bernd VanSkiver [EMAIL PROTECTED] 801.520.5957 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 6:52 AM To: CF-Talk Subject: Remove special chars to pass in URL Hi everyone, Say if I wanted to

RE: Remove special chars to pass in URL

2004-03-17 Thread Tangorre, Michael
Remove them before putting them into the URL or removing them when you want to use the URL variable value? #Replace(url.varName,(,,ALL)# #Replace(url.varName,(,,ALL)# Say if I wanted to pass this into a URL: AC(DB)B(SD) As a single URL variable value, how do I remove special characters?

RE: Remove special chars to pass in URL

2004-03-17 Thread Craig Dudley
This should do it on url ?var=urlencodedformat(AC(DB)B(SD),utf-8) on target page var = urldecode(url.var,utf-8) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 17 March 2004 13:52 To: CF-Talk Subject: Remove special chars to pass in URL Hi everyone,