Hi,
Can someone tell me what's the problem?
page 1: form.html
...
<form name="form1" method="post" action="page2.aspx">
<input name="txt1" type="text">
<input type="submit">
</form>
...
page 2: page2.aspx
<html>
<script language="VB" runat="server">
Sub Page_Load
Dim txt1 As String
txt1 = Request.params("txt1"
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
Can someone tell me what's the problem?
page 1: form.html
...
<form name="form1" method="post" action="page2.aspx">
<input name="txt1" type="text">
<input type="submit">
</form>
...
page 2: page2.aspx
<html>
<script language="VB" runat="server">
Sub Page_Load
Dim txt1 As String
txt1 = Request.params("txt1"
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