Hi Friend, You already know,we can generate resources for server control properties by using implicit and explicit localization expressions.To implement localization concepts in a web application,we need to localize the following elements:-
Static Content :-We can use the localization expressions concepts to localize the properties of controls used on a web page.You already know ,There are some static contents used on ASP.NET web application,such as Copyright information or Disclaimer information..NET Framework is allowed to localize the static contents of the web page,such as <Localize runat = "Server"> tag.We we can implement both concepts in a ASP.NET web application easily as given below:-- HTML Control
- Static Content
HTML Control :-
HTML Controls can not be localized using implicit or explicit expression,unless they are running on the server.If we want to run HTML control on the server, we have to to include the runat ="server" attribute in the @page directive, After the HTML controls are marked as server controls,local resources are automatically generated for the localizable properties,such as for the Tool Tip and Text properties of the controls. Now We can be bound HTML server controls using implicit or explicit expressions concepts.