I m designing a spell checker for Indian language in asp.net using c#.
I have prepared all the modules. But, there is a problem using TextBox
as I want it to tell the error while user types in the text and highlight that string.
I have done this on a button click but I am not able to do it directly without any button. Is it possible using jquery or ajax tools to use a TextBox
for firing an event while text is being typed? (I tried TextChanged
event but it gets fired only when a Button
is clicked in asp.net)
You can just use the
TextChanged
event handler.Make sure that
is there in your code.
You can use change event and make to ajax call inside that event.
you can use onkeyup of javascript