Hi,
I want to translate my web page to 7 different languages and I'm curious about what is the best way to handle this?
I know this subject opened multiple times but I didn't get a reasonable answer. Actually, all the topics are about php and gettext but I use classic asp (vbscript).
The method I'm using now is that;
I have en.asp
and tr.asp
which contains
lang_home="Home Page"
and lang_home="Ana Sayfa"
and in my pages, I display them like <%=lang_home%>
. I don't want to use lots of bracelets because I believe they slow down my site.
Evan, I thought that <%=GetTranslatedText(lang_home)%>
What I need to know is what is the best approach for multi-language web sites for asp and is there any solution like gettext for asp?
Thanks in advance.