ASP.NET标准控件之Localize控件
Localize控件:在网页上显示本地化文本的位置。Localiza控件是从Literal控件继承而来,功能与Literal控件完全相同。使用Label 控件可以对所显示的文本应用样式,但使用Localize 控件则不行。可以通过设置 Literal.Text 属性,以编程方式管理在控件中显示的文本。
举例:如何使用Localize控件显示静态文本? <%@ Page Language="C#" AutoEventWireup="True" %> <html> <head> <script runat="server"> void ButtonClick(Object sender, EventArgs e) { Localize1.Text="Welcome to WuWei's BLOG."; } </script> </head> <body> <form id="Form1" runat="server"> <h3>Localize实例</h3> <asp:Localize id="Localize1" Text="Hello Guys!!" runat="server"/> <br> <asp:Button id="Button1" Text="改变Localize控件显示值" OnClick="ButtonClick" runat="server"/> </form> </body> </html>