This topic is locked

Capture Search Terms

11/3/2008 6:53:26 AM
ASPRunnerPro General questions
P
paulyap2k author

Hi There,
Is there a way to capture user search terms associated with user ID ?
I would imagine it will be similiar to insert record event like logging a user login with time, date and user id, but what would be the variable that stores the search term
Any example would be appreciated.
Thanks,

Paul

J
Jane 11/6/2008

Paul,
you can save user serahc parameters in another table and then select records from this table if needed.

L
lennyc11563 11/6/2008

Do you have an example on how to do. I presently log user logon/off to another table, what would you use for search?

Paul,

you can save user serahc parameters in another table and then select records from this table if needed.

J
Jane 11/6/2008

Hi,
use List page: Before process event on the Events tab for this purpose.

Here is just a sample:

if request.querystring("a")="search" and request.querystring("SearchFor")<>"" then

'add record to the log table here

end if