User1035637761 posted
I have an application that needs to be multi language and the way i'd have done it in asp was just to produce a few different files, lang_eng.asp,lang_ger.asp,lang_fr.asp etc containing every piece of text within the app as a variable and the use a
select case on every page like:
Select case session("app_lang")
case "eng"
<!--#include file="lang_eng.asp"-->
case "ger"
<!--#include file="lang_ger.asp"-->
etc...
I'm assuming there a more cunning way to do this in asp.net 2.0? Whats my best way of approaching it so every page is automatically given access to the correct language set according to a session var without having to resort to the old include method?
Thanks.