Hi Bruce,
You've add the Translate Method to the WebServer proc (s_web),
Supposing my translation code is thread safe, I only need to add translation code to the p_web but...
I need to translate the Buttons text, then I have to add my translation code to the s_web too.
First Q: The translation rotuine is the same for both, search a table with the string to translate, and depending on the user language replace that string.
Does it means I will search for the same string twice? one with thw s_web and other with thw p_web Translate method?
Second Q: Inside my translation routine, I need to know the user language, the user language is a session value, I get it with p_web.GSV('login_lng') in the webHandler but I cant use it in the WebServer.
How should I get the session value inside the s_web?
Alberto