%@ Language=VBScript %>
<%
'************************************************************************************
'Diary Search screen
'************************************************************************************
%>
<%dim metatag, terms
metatag = chr(13) & ""
metatag = metatag & chr(13) & ""
Call Header(": Excavation Diary Search",metatag,terms, "")
'when this page is called scrap any sql held in session
Session("sql") = ""
Session("nav") = "search"
dim callsubject
'get the data to search
if Request.querystring("subject") = "" then
callsubject = ""
else
callsubject = Request.QueryString("subject")
end if
%>
The excavation diaries are a daily log kept by the excavators on site during each season. They record
the day to day activity of the team and their observations on their work.
<% if callsubject = "" then %>
| Two different search options are currently available: |
| |
| Quick Search |
| This allows you to select and search on a single criteria for a fast retrieval of records |
| |
| Complex Search |
| This allows you to enter multiple criteria to carry out an in depth search |
| |
<% elseif callsubject = "Quick" then %>
|
| This search allows you to select and search on a single criteria for a fast retrieval of records |
| Alternatively use the complex search to enter multiple criteria |
|
<% elseif callsubject = "Complex" then %>
|
| This search allows you to Enter multiple criteria to carry out an in depth search. |
| Alternatively use the quick search to enter single criteria at a time for faster response |
|
<%end if%>
|
<%
call footer()
%>