> What I need is DYNAMIC INCLUDE functionality similar to PHP, however I
> know that I don't have it in ASP.
Have you seen
http://www.aspfaq.com/2042 ?
You could also store your constants in a database table with three columns:
ConstantName, EnglishValue, TurkishValue, and then have a stored procedure
or function that takes your current locale as a parameter and returns the
constants as a single resultset or as output parameters. You really
shouldn't be so scared of making minimal calls to a database if it makes
your job easier. With the hardware we're using these days, it's not as
sacreligious as it used to be. I would bet that a large percentage of the
web sites you go to use the database not just for constants but for all of
the content as well, and the only ones that are slow are the ones that are
on a single node, old compaq server with 256 MB of RAM, using Access and
trying to serve 8 billion pages an hour (e.g. friendster.com). Anyway, you
should test the performance of a database solution, instead of just writing
it off based on assumptions and fear.
--
http://www.aspfaq.com/
(Reverse address to reply.)