I want to extact a name against name_code in the same form while it was filling.
the name and name_code are exist in sql table. Form used
<form name="form1" method=get>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="50%">Name_code</td>
<td width="50%"><input type="text" name="name_code" size="30"></td>
</tr>
<tr>
<td width="50%">Name</td>
<td width="50%"><input type="text" name="name" size="30"></td>
</tr>
</table>
<input type="submit" value="submit">
</form>
Dear sir, I want to auto fill the name field with the help of Javascript.
Thanks