Date:  02/29/2012 09:15:21 AM Msg ID:  004419
From:  Ali Koumaiha Thread:  004418
Subject:  Re: Question about receiving stream data
<%
  lcName = request.querystring("name")
  lcAddress= request.querystring("address")

if empty(lcName)
  ** do something..
  response.write("invalid name string..")
  return
endif

etc..
etc..

if not used('MyTable')
  use mytable in 0
endif

sele mytable
set order to name
if not seek(lcName)
   append blank
endif
repl name with lcname,;
  address with lcAdddress,;
otherfields with otherfields.. etc.. etfc..

%>
Sent by steve ward on 02/29/2012 08:13:19 AM:
 I want to replace an asp program with foxweb....here is the application.
We have a client that sends data whenever they receive the data in a http string 'http://daily.ss-corp.com/Vinu_test.asp?name=Steve Ward&address=123 Any Street&city=Any Town&state=FL&zip=33907&phone=987654321
I would like a blank page that receives this data and appends to existing table.