Reputation: 546
I am developing a website in asp.net using C#.
There is a web page for registration form which contains dropdownlist for laguage option Gujarati and English.
If user select Gujarati language then user is automatically enable to type in gujarati language in all textboxes of the form.
How i can achieve this functionality?
Upvotes: 0
Views: 1496
Reputation: 5113
you can create a custom text box - you might would like to try this www.codeproject.com/Articles/301832/Custom-Text-box-Control-that-Switch-keyboard-langu unless you change the culture of the keyboard its the only option you have , here is another thorough discussion http://forums.asp.net/t/1414525.aspx
Upvotes: 2