Jump to content

accent asp.net to asp classic


joecool2005

Recommended Posts

Hi,In my asp.net file I have the following form with data

  <Form action="login.asp" method="post" name="myForm" ENCTYPE="x-www-form-urlencoded">	 <input type="text" name="uid" value="frédéric	 <input type=submit value="submit" />	 </Form>

So on my login.asp why I seefrédéric instead of frédéric How do I encode it?Thanks

Link to comment
Share on other sites

  • 3 weeks later...

Try using ASCII Character.

<input type="text" name="uid" value="fr" & Chr(232) & "d" & Chr(232) & "ric" />

or

<input type="text" name="uid" value="frèdèric" />

or

<input type="text" name="uid" value="fr&#232;d&#232;ric" />

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...