7
2012
asp.Net Easily make your web application multilingual – Part 2
In my previous article, asp.Net Easily make your web application multilingual – Part 1, I showed you some first steps to prepare your webforms to accept multilingual content. In this article, we’ll bring it all together and create a functioning, multilingual web app. The Code Behind Copy the below to your default.vb Imports System.Threading Imports System.Globalization Public Class _default Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load [...]
1
2012
asp.Net Easily make your web application multilingual – Part 1
Living in Canada and working for a Federal Department, I always have to consider bilingual (multilingual) content when dealing with my applications. Visual Studio 2010 and asp.net make this a fairly simple thing to do, here’s how. Localization – A Multilingual web application Lets start by using the proper keywords, anytime you want to have multilingual content, what you’re actually talking about is Localization. This covers more than just the text you see on the [...]
Visit my Sponsors
Recent Comments
- Using the Ajax Modal Popup as a Login Control - A Beginner`s Guide - The Everyman Programmer The Everyman Programmer on Using the Ajax Modal Popup as a Login Control – A Beginner`s Guide – Part 2
- Using the Ajax Modal Popup as a Login Control – A Beginner`s Guide - Part 2 - The Everyman Programmer The Everyman Programmer on Passing Parameters to a QueryString – The right way to do it, Encryption
- Using the Ajax Modal Popup as a Login Control – A Beginner`s Guide - Part 2 - The Everyman Programmer The Everyman Programmer on Re-Usable Database Connection Class – A Beginner’s Tutorial Part 1
- Passing Parameters to a QueryString - The right way to do it, Encryption - The Everyman Programmer The Everyman Programmer on asp.Net 4.0 Routing, a simple Tutorial that works
- Nested Repeaters, do it clean and simple – A Beginner's Tutorial – Part 1 - The Everyman Programmer The Everyman Programmer on Re-Usable Database Connection Class – A Beginner’s Tutorial Part 1

