Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: flash forms |
From: | John Norman |
Date: | Tue, 12 Oct 1999 18:45:02 +0100 |
thanks I appreciate the help
-----Original Message-----
From: John Croteau [croteauerols [dot] com (mailto:croteauerols [dot] com)]
Sent: Tuesday, October 12, 1999 12:08 PM
To: flasherchinwag [dot] com
Subject: Re: FLASH: flash forms
Hi John,
This is the basic format for sending and receiving data for ASP.
This is from our ASP roundtrip test file which will be available
shortly.
Note, variable1 is for GET, variable2 is for POST and variable3 comes
from the server only.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Flash --> ASP --> Flash
name1 variable1 getReturn
name2 variable2 postReturn
variable3 fromServer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following is the ASP code:
<%
variable1 = Request.Querystring("name1")
variable2 = Request.Form("name2")
variable3 = "FromServer"
response.write("getReturn="+Server.URLEncode(variable1))
response.write("&postReturn="+Server.URLEncode(variable2))
response.write("&fromServer="+Server.URLEncode(variable3))
%>
--
Coming Soon Flash 4 Web Animation F/X and Design
http://www.amazon.com/exec/obidos/ASIN/1576105555/flashcentral
----------- -----------------------
John Croteau croteauerols [dot] com (mailto:croteauerols [dot] com)
------------- -------------------------
FlashTek (Advanced Websites with Flash) http://www.FlashTek.com/
Flash Bible (Fast track to good Flash) http://www.FlashBible.com/
Flash Central(The Universe Starts Here) http://www.FlashCentral.com/
The Flash Tech Resource (Tech Notes) http://www.FlashCentral.com/tech/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]