Date:  01/17/2006 08:41:26 AM Msg ID:  002811
From:  Larry Zhang Thread:  002811
Subject:  how to link to another page.
It seems to be a simple task. But when I use these code. It does not lead me to the test.fwx page. (test.fwx can be displayed if you run it independently.)
 
<html>
<body>
<basefont face="verdana, arial, helvetica" size=2>
<h3>Search Criteria:</h3>
<form action="NameSearch2.fwx" method="post">
Name:
<input name="name" maxlength="30" value="<%=Request.Form("name")%>">
<input type="submit" value="Search">
</form>
<hr>
<%
IF Request.FormCount("name") <> 0
   SET EXACT OFF
  SELECT * FROM Names;
            WHERE UPPER(name) = UPPER(Request.Form("name"));
         ORDER BY name INTO CURSOR results
  IF _TALLY > 0
      %><a href="test.fwx"></a><%      && Not working
  ELSE
      %><h3>Your Search Yielded No Results</h3><%
  ENDIF
ENDIF
%>
</body>
</html>