Mikayil Abdullayev
Mikayil Abdullayev

Reputation: 12376

ASP.NET - Changing keyboard input language upon web site starup

I'm developing a website where the language is different from English. Is it possible to change keyboard input language to a certain language when the active window/page is the website?

Upvotes: 1

Views: 1753

Answers (1)

nunespascal
nunespascal

Reputation: 17724

No. It is not possible to change the keyboard input language from a web site.

You can suggest that a user use a particular language, but you can't control what they use.

You could detect the user language by inspecting the Server variables

var language = Request.ServerVariables["HTTP_ACCEPT_LANGUAGE"];
var charset = Request.ServerVariables["HTTP_ACCEPT_CHARSET"];

Upvotes: 4

Related Questions