Advanced search parameter |
11/12/2009 4:18:34 PM |
ASPRunnerPro General questions | |
L
luic author
How can I get search parameters in ASPRunner 6.1? I tried the code you published for 5.2 (http://www.asprunner.com/forums/topic/5665-how-to-display-advanced-search-parameters-on-the-list-page/) and get the following error : |
|
J
|
Jane 11/13/2009 |
Chris, Function SafeIsEmpty(str)
|
L
|
luic author 11/18/2009 |
Thanks. I can get the field names but how can I get the search input values? |
L
|
luic author 11/18/2009 |
I saw there are session variables like below. How can use it to get the search field name and field value? Examples please. |
C
|
clig 11/18/2009 |
I saw there are session variables like below. How can use it to get the search field name and field value? Examples please. SESSION("<table name>_asearchnot") Advanced search - array with NOT option value for each field SESSION("<table name>_asearchopt") Advanced search - array with search option value for each field (Equals, Contains etc) SESSION("<table name>_asearchfor") Advanced search - array with with search for value for each field SESSION("<table name>_asearchfor2") Advanced search - array with with second search for value for each field (Between search)
Entered By (email): " & SESSION("UserIDEmail") & "<hr size=1>" |
J
|
Jane 11/19/2009 |
Hi, SESSION("<table name>_asearchnot")("FieldName") |
L
|
luic author 11/21/2009 |
I tried with this : |
J
|
Jane 11/24/2009 |
Chris, |