SoFunction
Updated on 2025-04-04

Learn to use localization using 2.0

For example, I have a login page with two Labels and two Textboxes on it. The page is named and the control is named lbl_UserName, lbl_Password, txt_UserName, txt_Password.

First, you can create a new App_LocalResources folder on the website, and then create a new resource file and name it
The naming needs to be the same as the matching page name. Then create another resource file and name it

This is the default, and this is called when the browser default language is set to Chinese.

Open the file:
Name Value
 Username 
 Password 

Open the file:
Name Value:
username
password

Then, in our page code
Bundle
1<asp:Label ID="lbl_UserName" runat="server"></asp:Label>
2<asp:Label ID="lbl_Password" runat="server"></asp:Label>Change to
1<asp:Label ID="lbl_UserName" runat="server" Text="<%$ Resources: %>"></asp:Label>
2<asp:Label ID="lbl_Password" runat="server" Text="<%$ Resources: %>"></asp:Label>
3
Finally, add Culture="auto:zh-Cn" UICulture="auto:zh-Cn" in the page property, and the default setting is Chinese.

You can see the effect after compiling. When the browser default language is English, you can see that the two labels are displayed as Username and Password.
When the browser default language is Chinese, you can see that the two labels are displayed as usernames and passwords.