-1

I have three hyperlink English, Spanish, and Chinese. When a user clicks on Spanish, all the content of website will change into Spanish (and so on). I tried to find an answer for this on Google but didn't get a perfect answer. If you have any links, could you please share with me. I don't know how to implement globalization.

Note:-I am try to implement on Hyperlink.

kush
  • 979
  • 1
  • 15
  • 32
  • Perhaps you would like to consider using a parameterized string as described in http://stackoverflow.com/a/1262856/227646 ? Have you had a chance to look at http://msdn.microsoft.com/en-us/library/ms227427.aspx ? – kush Jul 27 '12 at 22:23
  • Are you using WebForms or MVC? – Omtara Jul 28 '12 at 10:04

1 Answers1

0

Here is a tutorial that uses a ComboBox to switch between languages. The tutorial saves the last culture selected in the Session collection. You could store it in a cookie if you would like it to be persistent across visits.

Localization Tutorial

Omtara
  • 2,911
  • 2
  • 19
  • 31