Multi Language Site
-
Hi there I'm developing a website that is multi language. Which is the best way (fastest and easiest) to design site? for example Make several site in different langs or bind controls to db and read the values from db or ... . What do you suggest and why? Thanks a lot
-
Hi there I'm developing a website that is multi language. Which is the best way (fastest and easiest) to design site? for example Make several site in different langs or bind controls to db and read the values from db or ... . What do you suggest and why? Thanks a lot
Fastest and easiest are relative terms. Applications are typically localized by using resource files for visual elements such as controls and images. Content is stored in database tables keyed with the local id and all data access would use the current local ID from the browser or however the languages are switched in your application.
I know the language. I've read a book. - _Madmatt
-
Fastest and easiest are relative terms. Applications are typically localized by using resource files for visual elements such as controls and images. Content is stored in database tables keyed with the local id and all data access would use the current local ID from the browser or however the languages are switched in your application.
I know the language. I've read a book. - _Madmatt
Thanx man, I'll do it.
-
Hi there I'm developing a website that is multi language. Which is the best way (fastest and easiest) to design site? for example Make several site in different langs or bind controls to db and read the values from db or ... . What do you suggest and why? Thanks a lot
I think there is no need to store the static data in DB, create the language specific resource files and call same at run time while change the language selection.All javascript's alert messages should also reside in respective resorce files. I hope you got it.