autocomplete - How to auto fill text field in Classic ASP -
i have 5 textboxes (name, roll no, address etc) , want when fill name in first text box (name) should fill 4 fields automatically filled.
i got in asp.net want use same in classic asp.
sounds you'll need fire off ajax call via onkeypress javascript function call calls script queries database , gets data user when finds match.
<input type="text" id="uname" name="uname" value="" onkeypress="getuserdetails(this.value)"/> you can use data , further ajax populate additional fields.
Comments
Post a Comment