Use of @ in query / asp

P

Paul Digby

I have created a query, that requires the manual input of a name using @Name,
which prompt ok and the results returned are correct. This query is linked to
6 other queries passing the @Name back to the other 5.

I now want to use this single query to producing an .asp web page. I know
the @Name in the query will not work. Is there a way to do this. My .asp code
qill look something like

Where Name = "&Name&"
 
Top