Use admin/admin to login. This header can be found in Header item on the Editor screen.

Knowledge Base  >   > 
How to set default values to a date field in advanced search.
How to set default values to a date field in advanced search.
22.04.2007
0
How to set default values to a date field in advanced search with "between" condition so we can show only records updated within the last two days?
You can do this by adding the following three lines in the beginning of list page right before rSession.LCID = 1033 line.rrSession("SearchOption\_" & strTableName & "\_DateField") = "Between"rSession("SearchFor1\_" & strTableName & "\_DateField") = FormatDatetime(DateAdd("d", -2, now()),2)rSession("SearchFor2\_" & strTableName & "\_DateField") = FormatDatetime(now(), 2)r