Hi friends,
I am working on website in .net in 3 languages, French, German and English.
Later on we will add more languages like Japanese etc.
I saw lots of tutorials, where small demos are made in .net localization
resource files.
My site has lots of paras, images, and strings.
Now my questions is, which is the best resource and Best Practice to store
these strings.
MS SQL Database or resx files?
Where I will get the best performance. I heard that reading flat files are
too slow.
Waiting for your reply soon.
Thank you very much
Regards
Sachin Korgaonkar
Michael (michka) Kaplan [MS] - 25 Jul 2005 15:49 GMT
To be honest, there is no definitive answer to this question since the
answer is entirely dependent on so many variables. There are two ways to go:
a) Use the way that is most comfortable for you in your development efforts
(the easiest and fastest to develop has some strengths here for maintenance,
etc.).
b) test with both and go with the fastest.
Either way, there are two things to always keep in mind:
1) Write the code so that you can easily and globally plug in a different
method later if you need to without chanaging every source file.
2) Don't assume that one will be so much slower that you must do one or the
other; performance work should be based on actual performance issues found
by benchmarking, not by guessing ahead of time that something is slower....

Signature
MichKa [Microsoft]
NLS Collation/Locale/Keyboard Technical Lead
Globalization Infrastructure, Fonts, and Tools
Blog: http://blogs.msdn.com/michkap
This posting is provided "AS IS" with
no warranties, and confers no rights.
> Hi friends,
>
[quoted text clipped - 17 lines]
> Regards
> Sachin Korgaonkar