I have a form which I want to post to two separate IFRAMES on the same page. The idea is that if you type in the 'Author' box a list of possible matches is shown that gets shorter as you get closer to an exact match. I also want to have something similar for a 'Publisher' box.
So far I have:
<form method="post" name="form" action="suggestions.asp" target="suggestions">
<font face="verdana" size="2"><b>Author</b></font>
<input type="text" name="Author" value="<% = Author %>" onKeyPress="submit()">
</form>
So far I have:
<form method="post" name="form" action="suggestions.asp" target="suggestions">
<font face="verdana" size="2"><b>Author</b></font>
<input type="text" name="Author" value="<% = Author %>" onKeyPress="submit()">
</form>