Synopsis
How do I use string resources on different pages
Procedure
To use a string resource in the template you would use: FREE
To use a string resource in an .aspx page you would use: (!"common.cs.87"!)
To use a string resource in an .aspx.cs or .cs page you would use:
AppLogic.GetString("common.cs.87", SkinID, LocaleSetting)
where SkinID is the ID of the skin that you are currently viewing and LocaleSetting is the locale that you are currently viewing the page under. These may already be available in existing variables depending on the page you are adding the string resource to.