Hi,
I have a form that passes search criteria to an asp page for searching purposes through the url. ie:
I have it set up so that I can enter the % wildcard on my form to do wildcard searches.
I would like to be able to use * (asterisk) as a wildcard and have some vbscript in my asp file change * to %.
I am storing all of the search criteria in an array with the following vbscript line:
[tt]set arQueryString = Request.QueryString[/tt]
is there a way to intercept my url string and do a quick search/replace before the array splits up the criteria?
I have a form that passes search criteria to an asp page for searching purposes through the url. ie:
I have it set up so that I can enter the % wildcard on my form to do wildcard searches.
I would like to be able to use * (asterisk) as a wildcard and have some vbscript in my asp file change * to %.
I am storing all of the search criteria in an array with the following vbscript line:
[tt]set arQueryString = Request.QueryString[/tt]
is there a way to intercept my url string and do a quick search/replace before the array splits up the criteria?