Date:  09/19/2007 02:52:45 PM Msg ID:  003510
From:  George Gambill Thread:  003510
Subject:  DemoNameSearch Source Code Fails
Unable to get the DemoNameSearch source code (from ://www.foxweb.com/DemoNameSearch.asp ) to work.

It blows by the <input type="submit" value="Search"> line and claims "Your Search Yielded No Results" before any names can be entered and before the search can be clicked.

Also the name object used to enter the name displays "<%=Request.Form(" when the form first comes up. Once that is cleared out and the first letter of a name is entered the pulldown does display the correct names from the table. 

We are running from the VFP 9 DLL.

Help!!!

The Html used is a follows:

<html>
<head>
<title>Name Search</title>
</head>
<body>
<h3>Search Criteria:</h3>
<p>This example illustrates how simple it is to write FoxWeb
applications. The code searches a FoxPro table for matches on the
name entered by the user. Partial matches also yield results. For
Example "mo" will find both "Monroe" and "Morrison." The search is
not case sensitive. To see all the names in the database just leave
the Name entry blank.</p>
<form action="NameSearch.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 && So that partial names will work
    SELECT * FROM Names;
        WHERE UPPER(name) = UPPER(Request.Form("name"));
        ORDER BY name INTO CURSOR results
    * Check if there were any hits
    IF _TALLY > 0
        %><h3>Search Results:</h3><%
        SCAN
            Response.Write(results.name + "<br>")
        ENDSCAN
    ELSE
        %><h3>Your Search Yielded No Results</h3><%
    ENDIF
ENDIF
%>
</body>
</html>