1

I want to set the input language in TextBox in asp.net page. In this page I need one TextBox in hebrew and one text box in english. I tried to replace the asp.net field with html input field where it is possible to set the lang attribute and it didn't set the language

1
  • See this answer, it setting the language using Javascript. It might be helpful Commented Feb 16, 2014 at 8:33

2 Answers 2

1

You can set it in jquery

$().ready(function () {
    $("#textbox").attr("lang", "he");
});
Sign up to request clarification or add additional context in comments.

Comments

-1

You can use lang attribute for this purpose asp:Textbox lang="he".

1 Comment

OP already said that he tried this as well. please read the question.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.