vote up 0 vote down star

Hi, I have a class in my asp.net proj, I would like to get access GetGlobalResourceObject (that page exposes), from anywhere in the site, possible?

In other words I wanna access the global resources from a class that is not a page I don't care how.

flag

2 Answers

vote up 1 vote down

If you are in the site you have access to HttpContext and can use:

HttpContext.GetGlobalResourceObject()
link|flag
I think Resources is better since it's strongly typed, rather than that object finction. thanks anyway – Shimmy Jul 10 at 9:14
Also no need to do use hard-coded strings. – Shimmy Jul 10 at 9:15
I voted up anyway – Shimmy Jul 23 at 13:32
vote up 1 vote down check

Answer: Yes, as following pseudo:

Resources.<The name of the resources file name>.<your resource key>;

Example:

lblTitle.Text = Resources.MySettings.WebsiteTitle;

resources is an auto generated namespace that exposes all the global resource classes and props.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.