I have 7 textbox and 7 corresponding checkbox if user input in any of the text box its particular checkbox should get tick and selected textboxes text will be posted for query by click of a Search button
how to do it..via C#.net? which method or event should i use to check for this condition. Is i have to do it on page_load event with viewstate?
Suggest me what to do thanks in advance…
Searching Filters
Title
Description
Category
*
Location
Sources
Keywords
Date From
*
*
Date Upto
*
*
*
to detect the input text change, you can do that with the help of JQuery. u should look at http://api.jquery.com/change/ here for .change() method for text inputs.
EDIT :
here is an on-the-fly example;
run this example and enter ‘bar’ inside the first textbox. u will see the first checkbox has been ticked. then enter another word except ‘bar’. u will see the first checkbox has been unticked.
Also you can consider some of the other jQuery events like keyup, keydown or keypress