i have a problem when working with jquery and form.
example, 1 have some patient edit form
<form>
<input type="text" name="patient_medic_record_number">
<input type="text" name="name">
<input type="text" name="address">
<select name="sex">
<option value="--SEX--">
<option value="Male">
<option value="Female">
</select>
</form>
how to load data from mysql database then autocomplete name,address,sex when i insert the patient_medic_record_number.
Ok dude , you can use JQuery Ajax Method to load the datas.
When you enter the patient_medic_record_number you must use its OnChange event to raise you XMLhttpRequest like this :
and then use this web method in your code behind to return JSON values :
If you want for more details comment me.