Multi Lingual Website
-
Hi, I need to develop a website, but it needs to be in different labguages. I don't even know how it works? Where do I start coding, what do I look at, can some please help with some advice? I will be using ASP.NET and C# 2.0, and hopefully 3.0. Regards ma se
-
Hi, I need to develop a website, but it needs to be in different labguages. I don't even know how it works? Where do I start coding, what do I look at, can some please help with some advice? I will be using ASP.NET and C# 2.0, and hopefully 3.0. Regards ma se
Better Buy a Book related to Asp.Net 2.0 using C# and start learn and then Practice the Code as your Requirement.
Regards, Satips.:rose:
-
Hi, I need to develop a website, but it needs to be in different labguages. I don't even know how it works? Where do I start coding, what do I look at, can some please help with some advice? I will be using ASP.NET and C# 2.0, and hopefully 3.0. Regards ma se
Multi lingual websites can be done in a couple of different ways. One way is to store all text in database tables. So each page must query the database to figure out what text to display. I am not a big fan of that one, but it is one way of doing it. The other way is using resource files. You can seach for info on resource files. These files are using to store the different languages, then based off users broswer settings you can setup the site to use different resources. Hope that helps. Ben
-
Hi, I need to develop a website, but it needs to be in different labguages. I don't even know how it works? Where do I start coding, what do I look at, can some please help with some advice? I will be using ASP.NET and C# 2.0, and hopefully 3.0. Regards ma se
Which part needs to be in different languages? Is the site going to be static content or more CMS style dynamic content? You need to provide more information.
Please visit http://www.readytogiveup.com/ and do something special today. Deja View - the feeling that you've seen this post before.
-
Hi, I need to develop a website, but it needs to be in different labguages. I don't even know how it works? Where do I start coding, what do I look at, can some please help with some advice? I will be using ASP.NET and C# 2.0, and hopefully 3.0. Regards ma se
Just make a website in your native language.. then add resource files to each web page and on load.. check the current culture of the client and load the appropriate language related page
-
Hi, I need to develop a website, but it needs to be in different labguages. I don't even know how it works? Where do I start coding, what do I look at, can some please help with some advice? I will be using ASP.NET and C# 2.0, and hopefully 3.0. Regards ma se
check www.asp.net and look around for Starter Kits which help you to start....
Nav.
-
Multi lingual websites can be done in a couple of different ways. One way is to store all text in database tables. So each page must query the database to figure out what text to display. I am not a big fan of that one, but it is one way of doing it. The other way is using resource files. You can seach for info on resource files. These files are using to store the different languages, then based off users broswer settings you can setup the site to use different resources. Hope that helps. Ben
Yah, I agree too. But if you have lot of statics pages with large text then you must create different pages for different languages.