Internationalization ASP.Net Tutorial

You  create global resource files by adding the files to a special folder named App_GlobalResources. 
This folder must be located in the root of your application.
File: App_GlobalResources\Site.resx
Name        Value
Title        My website
Copyright    Copyright 2006 by the Company
The following page uses the entries from the global resource file.
<%@ Page Language="C#" %>
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


    <br/>    <asp:Literal<br/>        id="ltlTitle"<br/>        Text="<%$ Resources:Site,Title %>"<br/>        Runat="Server" /><br/>    


    
    

    Page Content
    
            id="ltlCopyright"
        Text="<%$ Resources:Site,Copyright %>"
        Runat="Server" />
    

    


Localize a global resource file by adding culture names to the filename
File: App_GlobalResources\Site.es.resx
Name         Value
Title         t
Copyright     Copyright