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

Where are my é, à, û ...

Status
Not open for further replies.

yahve

Programmer
Nov 14, 2000
159
0
0
CA
Hi,

Can someone tell me what's the problem?

page 1: form.html
...
<form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;page2.aspx&quot;>
<input name=&quot;txt1&quot; type=&quot;text&quot;>
<input type=&quot;submit&quot;>
</form>
...

page 2: page2.aspx
<html>
<script language=&quot;VB&quot; runat=&quot;server&quot;>
Sub Page_Load
Dim txt1 As String
txt1 = Request.params(&quot;txt1&quot;)
lblMsg.Text = txt1
End Sub
</script>
<body>
<form runat=server>
<asp:Label id=lblMsg runat=Server /> </form>
</body>
</html>

Why does when I enter something like «bébé» in the form, the second page displys «bb»? Where are my é's?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top