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

Request.Form() Returning Odd UTF Value.

Status
Not open for further replies.

travisbrown

Technical User
Dec 31, 2001
1,016
0
0
Okay. This dunbfoinds me.

A form submits a textfield with a value of "Potluck Café & Catering"

The processing page returns somethign completely unexpected

Code:
<form action="" method="post">
 <fieldset>
  <input name="job_employer" type="text" />
  <input type="submit" value="submit" />
 </fieldset>
</form>

<%
WITH response
 .write request("job_employer") '= Potluck Café & Catering
 .write request.form() '= Potluck+Caf%C3%A9+%26+Catering
END WITH
%>

The issue is that é is not = %C3%A9. That returns Potluck Café & Catering.

This make any sense to anyone?

 
Ah, nevermind. There is something going on down the line that is misinterpreting the hex codes.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top