[thelist] Netscape 6 fails when passing ASP

Jay Blanchard thelist at lists.evolt.org
Wed Mar 6 11:34:01 2002


<snip>
ODBCStatement := Replace( " ", "%20", ODBCStatement)
ODBCReturnData := Replace("NO RECORDS", "",
ReadExtFile(NetLocation^"execute.asp?SQL="^ODBCStatement))
</snip>

Isn't there a ")" missing? Could this be the problem?

ODBCStatement := Replace( " ", "%20", ODBCStatement)
ODBCReturnData := Replace("NO RECORDS", "",)  <-------------------look here!
ReadExtFile(NetLocation^"execute.asp?SQL="^ODBCStatement))

Jay