Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Can you explain the fundamentals of “GetGlobalResourceObject” and “GetLocalResourceObject” functions?
Can you explain the fundamentals of “GetGlobalResourceObject” and “GetLocalResourceObject” functions?
✍: Guest
These two functions belong to the HttpContext object. Using it you can get the object reference of the resource object. For instance you can see from the below code snippet we have got reference to the Global resource object and we are trying to get the value for
“lblUserIdresource1” key. lblUserId.Text=HttpContext.GetGlobalResourceObject("Resource", "lblUserIdResource1").ToString(); Note :- In the same globalization folder there is “LoginScreenUsingGetGlobal.aspx” which demonstrates how “GetGlobalResource” works.
One short note because “GetGlobalResourceObject” and “GetLocalResourceObject” operate from with in current HttpContext.It uses what the regional settings are sent from the browser end.
2007-11-02, 7031👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - What are Daemon threads and how can a thread be created as Daemon? Daemon...
How did you implement UML in your project ? PART II Implementation phase / Coding phase (Class diagr...
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
What is difference between SITP and UTP in testing ? UTP (Unit Test Plan) are done at smallest unit ...
Should synchronization primitives be used on overrided bean methods? No. The EJB specification speci...