hello everyone...
i am trying to do a bilingual forum (french and english), i thought that it was easy, and that i only needed to have 2 language files and include the appropriate file...
what is happening is that i cannot include the 2 files in the same page even if its in an IF statement
------------------------
so the common.asp will start by something like
<% if request.querystring("lang")="fr" then %>
<!--#include file="language_files/language_file_inc_fr.asp" -->
<% else %>
<!--#include file="language_files/language_file_inc.asp" -->
<% end if %>
--------------------------
but this will not work coz even when the final page will have one of the 2 includes... the server loads them both and is giving me an error msg (variable redefined)
anyways, this aint only the problem... there's the problem of the date variables too which are found in the database... 'january', 'february', ...
any suggestions?
Thanks
Dany