Newbie here, having fun querying database thru web pages but I have a
problem:
I have a query string returned containing the names of some
checkboxes:
Checkbox=CompanyName, ContactName
Then I execute the query string on this database:
Set objRS=adodbConn.Execute(strQuery)
How can I break this query string into 2 seperate strings so I can get
the records using this?:
Response.Write objRS( the two strings)
Note: there could be more than 2 checkboxes returned in the query
string.
Thanks in advance for any help.