Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

removing %20 from Querystring 1

Status
Not open for further replies.

mts176

MIS
Apr 17, 2001
109
US
I have written a HTML page that collects information passes it to another HTML page that in turn calls a Perl Script to send an email to people. My problem is in Internet Explores prior to 5.5 the spaces between first and last names, addresses, and everything else get passed with the %20 instead of the whitespace. How can I fix this? Any help would be appreciated.
 
This will not be an issue when your Perl script handles the data; the param() function will replace the special characters.

But if you want to "clean up" the strings upon arrival to page 2, you can use the JavaScript method "unescape." That will return you a string with all special characters converted to their ascii values.

A little more information is included here:
thread215-553201

Hope that helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top