Here's something...
IIS, MS Access 2k
Searchit.asp
User enters telephone number:
<FORM action="telephn_results.asp" name="info" method=POST>
telephn_results.asp
And it's suppose to bring up the recordset based upon "info" [the phone number]:
cmdTemp.CommandText = "SELECT * from qry_search4tele where phnnum = '" & Request.Form("Find") & "'"
It brings up nothing! Errors or otherwise!!!
The MS Access query works fine. Running it in Access displays all the records. It is a simple select query inner joining several tables.
I modified the query to create a table. Copied the original ASP file and modified it. At first it didn't work, but if I use:
<% Response.Write DataCommand1(0)'phnnum %>
instead of
<% Response.Write DataCommand1("phnnum") %>
it will work. [Slowly, since this is a large table!]
I want it to work using the query.
Any ideas???
TIA
IIS, MS Access 2k
Searchit.asp
User enters telephone number:
<FORM action="telephn_results.asp" name="info" method=POST>
telephn_results.asp
And it's suppose to bring up the recordset based upon "info" [the phone number]:
cmdTemp.CommandText = "SELECT * from qry_search4tele where phnnum = '" & Request.Form("Find") & "'"
It brings up nothing! Errors or otherwise!!!
The MS Access query works fine. Running it in Access displays all the records. It is a simple select query inner joining several tables.
I modified the query to create a table. Copied the original ASP file and modified it. At first it didn't work, but if I use:
<% Response.Write DataCommand1(0)'phnnum %>
instead of
<% Response.Write DataCommand1("phnnum") %>
it will work. [Slowly, since this is a large table!]
I want it to work using the query.
Any ideas???
TIA