views:

41

answers:

0

Hi,

I'm wondering what is the performance impact of constantly calling the following methods:

HttpContext.GetGlobalResourceObject()
HttpContext.GetLocalResourceObject()

The current implementatino iterates through the list of strings and translates them by reading the values from the global resource files. On average there are 50-100 strings to be translated and I'm concerned that it might be inefficient when the application is heavily used by multiple users.

Thank you