|
Lets you convert (decode) URL encoded data. Reverse function to Server.URLEncode. You can use the function to accept urlencoded form data using BinaryRead Author: Antonin Foller Code: ASP 2.0 & VBScript |
| |
Overall Rating:
 User Rated
| |
Very Nice - Fixed My Problem  Written by Anonymous User (#1784-202) from Indianapolis, IN (Thursday, February 09, 2006)
 |
Strengths: Works well for simple decoding. Also uses two different methods to decode the strings. Weaknesses: None so far. Details: Used the function in a form "experiment" I was programming for a company site. Worked well in solving the problem. Review Based On: 1 Day(s) of usage |
Works fine but outdated  Written by Anonymous User (#1445-141) from Everett, WA (Monday, October 25, 2004)
 |
Strengths: It works Weaknesses: It can be replaced with one line of code Details: With VBScript version 5, the UNESCAPE function was added. And though it's not a perfect reversal of ULREncode, it's very very close and easy to fix:
unencoded = Unescape( Replace(encoded,"+"," ") )
Nothing more needed. Review Based On: using demo only |
Works like a charm :) !@#$%^&*()  Written by Anonymous User (#1365-171) from East Haven, CT USA (Monday, June 21, 2004)
 |
Strengths: It works Weaknesses: no comment Details: I tried it. Took 1 minute to set up. Used on an ASP page(not .NET) Very happy with the results, THANKS Antonin! Review Based On: 1 Day(s) of usage |
| |
|