ASP.NET 1.0 and 1.1 BasicsASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Hi
I want to use the button control but it does not allows to display chinese characters, is there a way to solve it?
<asp:Button runat="server" ID="btn" Text="#20013;#25991;#29256;"/>
If I use normal HTML button control, this works fine.
<input type="submit" value="#20013;#25991;#29256;"/>
Hello,
you should save your aspx file with Unicode characters,use save as and click the arrow next to save button,choose save with encoding to select a Unicode encoding.
_____________________________ Mehdi.
software engineering student.
Looking for a good job for summer 2005.
I followed your suggestion but still I get the ??? as button label.
I also used
<meta http-equiv="Content-Type" content="text/html; charset=big5">
Also does not work.
I manually set the encoding page at web browser also displays "???"
But using the HTML button is ok.
Maybe I will just stick with normal HTML button.