Reputation: 13
I have a textbox on my webform and I want to open IME when the textbox is focused. I found that 'ImeMode' on internet but I can't find that property in my project. I'm using visual studio 2019 for asp.net( vb) project. Can someone tell me what I need to get imemode for my project? noted: I need to open IME for japanese characters. thank you.
Edit
May be it is not a right answer but it did work on IE so I will put the code here.
I added css style in my textbox for ime.
<asp:TextBox ID="txtName" runat="server" style="ime-mode:active"></asp:TextBox>
<asp:TextBox ID="txtPassword" runat="server" style="ime-mode:disable"></asp:TextBox>
Upvotes: 0
Views: 544