Date:  02/29/2012 01:40:30 PM Msg ID:  004420
From:  steve ward Thread:  004418
Subject:  Re: Question about receiving stream data
ok i set this up under my test.ss-corp.com virtual domain and server....all worked well....script name was crg.fwx under the E:\inetpub\FoxWeb\Scripts\info
 
I now want to create a run site...i have created crg.ss-corp.com a record in DNS and the web site crg.ss-corp.com...i also set up a new virtual server in foxweb crg.ss-corp.com as well but when i post i get page cannot be found
 
this scrip works
http://test.ss-corp.com/info/crg.fwx?name=Steve Ward&first=Steve&last=Ward&address1=123 here and now&city=Ft Myers&state=FL&zip=33907&phone=987654321
 
this does not
 
http://crg.ss-corp.com/info/crg.fwx?name=Steve Ward&first=Steve&last=Ward&address1=123 here and now&city=Ft Myers&state=FL&zip=33907&phone=987654321
Sent by Ali Koumaiha on 02/29/2012 09:15:21 AM:
<%
  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.