HTML encoding with french characters

J

Julie

Hi
I have the following code in a html file

<form action="show.asp" method="post" target="_top"><input type="text" name="np"><input type="submit" value="Go"></form

In the show.asp

<body><%= Request.Form("np") %></body

If the user enters the characters like !"/$%?&*(), they are displayed corectly by show.as
But if he enters french characters like éûèùô, garbage is displayed by show.asp

Anyone with ideas
 
C

clintonG

We need Unicode to support language characters that are not
included in the ASCII character set. ASP.NET supports Unicode.

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top