Internationalization ASP.Net Tutorial

The ASP.NET Framework includes a control named the Localize control. 
This control is included in the Framework to make it easier to localize big chunks of text in a page.
<%@ Page Language="C#" UICulture="auto" %>
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


    Show Localize Control


    
    

            ID="locBodyText"
        meta:resourceKey="locBodyText"
        Runat="server">
        Here is the page body text
    
    
            ID="ltlBodyText"
        runat="server">
        Here is some literal text
    
    

    


The difference between the Localize control and Literal control is apparent only in DesignView.