Click here to Skip to main content
Click here to Skip to main content
Articles » Web Development » ASP.NET » General » Downloads
 

How to read satellite assemblies resources in ASP.NET

By , 14 Sep 2003
 
ResourcesDemo_src.zip
ResourcesDemo
bin
fr
ResourcesDemo.resources.dll
ResourcesDemo.dll
ro
ResourcesDemo.resources.dll
Global.asax
ResourcesDemo.csproj.webinfo
ResourcesDemo.vsdisco
using System;
using System.Resources;
using System.Reflection;

namespace ResourcesDemo
{
	/// <summary>
	/// Class for resource retrival
	/// </summary>
	public class ResourceText
	{
		private ResourceText()
		{}

		private static ResourceManager _resourceManager;

		public static void InitializeResources()
		{
			Assembly assembly = Assembly.GetExecutingAssembly();
			_resourceManager = new ResourceManager("ResourcesDemo.TextRes", assembly);
			_resourceManager.IgnoreCase = true;
		}

		public static string GetString(string key) 
		{
			try 
			{
				string s = _resourceManager.GetString( key );
				if( null == s ) throw(new Exception());
				return s;
			}
			catch
			{
				return String.Format("[?:{0}]", key);
			}
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Adrian Tosca
Web Developer
Romania Romania
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 15 Sep 2003
Article Copyright 2003 by Adrian Tosca
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid