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

Hexa special char in form

Status
Not open for further replies.

Ultdrake

Programmer
Jul 15, 2002
19
CA
When I use a form, the Querry String change the special caracter in hexadecimal. But I want write the querry string in a txt file with the original caracter not the hexa one...

What can I do?
 
You should be able to convert it back using unescape.
e.g.
Code:
 var realchars = unescape(querystringchars);
Hope I helped / Thanks for helping
if ((x<10&&y<10) &&(((parseInt(x.toString()+y.toString())-x-y)%9)!=0)){ alert(&quot;I'm a monkey's uncle&quot;); }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top