Thanks for your reply TS,
For resource file, normally you will add them into project through the
following means:
** You add a resource xml file(resx file) which can contain different kind
of resource objects(string, image, file .....). So you can add multiple
such resx files in a project. When you build the project, they will be
compiled(as embeded resource) into your assembly(or separate satellite
assemlies that contains resource for specific cultures).
For these kinds of resource, you'll use API to get resource item from
it(from assembly).
#Introduction to Resources and Localization
http://msdn2.microsoft.com/en-us/library/aa309393(VS.71).aspx
#Resources in Applications
http://msdn2.microsoft.com/en-us/library/f45fce5x(vs.71).aspx
** For ASP.NET application, it has some further encapsulated
functionality.
You can provide a local resource file for each aspx page or serveral
global
resource files for the entire application. These resource items are easy
to reference in your aspx page(both through declarative syntax or
programatic code):
#using localization resource in ASP.NET:
http://quickstarts.asp.net/QuickStartv20/aspnet/doc/localization/localizatio
n.aspx
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no
rights.