5. Web Interface to WWWISIS

The next step is to provide a web page that will link the catalog database search options. The following figure 1 shows the web page display that performs this function. This web page coded using HTML is located in C:\INETPUB\WWWROOT directory, with the file name “web-catalog.htm”, which provides the access to “Guided Search” and “Direct Search” to carry out two different types of searches on the ISIS database.


Figure 1.Interface for Web Access Catalog

The push buttons “Click here for Direct Search” andClick here for Guided Search” are linked to two other sub-pages “direct-search.htm” and “guided-search.htm” respectively and have been established using FORM tag of HTML coding as follows:

  1. Direct Search:

<form action="http:// www.libres.ait.ac.th /direct-search.htm">
<inputtype="submit" value="Click here for Simple Search ">
</form>

  1. Guided Search:

<form action="http://www.libres.ait.ac.th/guided-search.htm">
<input type="submit" value="Click here for Guided Search ">
</form>

The directory C:\INETPUB\WWWROOT has been assigned a domain name “http://www.libres.ait.ac.th” in the main Domain Name Server (DNS) of the organization. So this web can be accessed by typing the web address given below in the address box of the Internet browser:

http://www.libres.ait.ac.th/web-catalog.htm

This is the full coding of the “web-catalog.htm” file:

<html> 
<head> 
  <title>AIT Library Web Catalog</title> 
</head> 
<body> 
<center> 
<h1><font color="#008000">AIT Library Web Access Catalog</font></h1> 
<center> 
<p align="justify"><font size="3"> 
This provides web access to Asian Institute of Technology Library Catalog.  It is updated at regular intervals. This contains all the documents received, classified and cataloged, But does not include documents on order. This will not give information about documents out on loan or details of documents borrowed by an individual. </p> 
For such information the usual real-time access is through telnet at : <a href="telnet://clair.ait.ac.th/">AIT Library Catalog</a> . <br>  
<center><b>
<form action="http:// www.libres.ait.ac.th /direct-search.htm"> 
  <input type="submit"  value="Click here for Simple Search "style="font-weight: bold">
</form><br> 
<hr><br> 
<font size=-1> 
[<a href="http://www.ait.ac.th/">AIT Home</a>] 
[<a href="http://www.clair.ait.ac.th/director/libinfor-index.html">Library Information Resources</a>]</font><br><br>
<font color="#A52A2A" size=-1><i>&copy; Asian Institute of Technology</i></font></center>
<p align="right"><i>Design amp;Maintenance :
<a href="mailto:devdsn@ait.ac.th">F.J.Devadason</a> <br>  & <a href="mailto:nancyj@ait.ac.th">Nancy Canisius </a> </i> </p>
<hr> 
</body> 
</html> 

Previous | Next

1