<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
   <META NAME="description" CONTENT="Insert page description here">
   <META NAME="keywords" CONTENT="Insert page keywords here">
   <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
   <TITLE>Page Title</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
function LoadPage()
{
//timevalue=setTimeout("document.CustInfoForm.submit()", 2000);
}
//-->
</SCRIPT>
</HEAD>


<BODY bgcolor="black" text="white" onload="LoadPage()">
<!-- BODY bgcolor="black" text="white" //->

SA
<br>

<SAQUERY NAME=Dbquery DATASOURCE="northwind">
   SELECT customerid,companyname,contactname,city,phone,fax
     FROM Customers
</SAQUERY>

<TABLE border=1>
   <TR>
      <TH>customerid</TH>
      <TH>companyname</TH>
      <TH>contactname</TH>
      <TH>city</TH>
      <TH>phone</TH>
      <TH>fax</TH>
   </TR>

   <SAOUTPUT AUTOLOOP=DbQuery>
      <TR>
         <TD>#customerid#</TD>
         <TD>#companyname#</TD>
         <TD>#contactname#</TD>
         <TD>#city#</TD>
         <TD>#phone#</TD>
         <TD>#fax#</TD>
      </TR>
   </SAOUTPUT>
</TABLE>

<form method="post" name="CustInfoForm" action="northwind.aro">
<input type="submit" value = "rerun">
</form>

</BODY>
</HTML>