<%@ 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 %>

Search the Excavation Diaries <%if callsubject <> "" then Response.Write(" - " & callsubject & " Search")%>

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
     
    List all entries for a given year:<%Call DiaryYearList("")%> 

    List all entries made by a particular author:<%Call DiaryNameList()%> 

    List all entries made on a particular day:<%Call DiaryDayList()%> 

    Look for occurences of a word: 

    Entries related to building:<%Call DiaryBuildingList("")%> 

    Entries related to space:<%Call DiarySpaceList()%> 

    Entries related to feature:<%Call DiaryFeatureList()%> 

    Entries related to Unit:<%Call DiaryUnitList()%> 
    <% 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
     
    List all entries for a given year:<%Call DiaryYearList("")%> 
    List all entries made by a particular author:<%Call DiaryNameList()%> 
    List all entries made on a particular day:<%Call DiaryDayList()%> 
    Look for occurences of a word: 
    Entries related to building:<%Call DiaryBuildingList("")%> 
    Entries related to space:<%Call DiarySpaceList()%> 
    Entries related to feature:<%Call DiaryFeatureList()%> 
    Entries related to Unit:<%Call DiaryUnitList()%> 
     
     
    <%end if%>
    <% call footer() %>