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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBScript command for unescape?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How do I unescape.. or urlUNencode in vbscript?
 
This _should_ work for you. It worked in ASP for me.

<script language=&quot;Javascript&quot;>
function unesc(value) {
return unescape(value);
}
</SCRIPT>

<SCRIPT Language=&quot;VBScript&quot;>
var = unesc(&quot;escaped%32string&quot;)
</SCRIPT>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top