There are 5 textboxes in a webform and their ID's are:
1- Roll_Number
2- Age
3- Email
4- First_Name
5- Last_Name
In the first 3 textboxes user input something now when any of three textboxes gets blur(means they get some value input and onblur event gets fired) a web method should be called from code-behind in c# and in that web method a c# database query should run and gets the data of First Name and Last Name according to the values entered in Roll Number , Age and Email. When data is returned the 4th and 5th textboxes should get populated with the returing values automatically.