Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending info from/to FORMS with Flash 1

Status
Not open for further replies.

Showtime99

Programmer
Sep 24, 2004
14
0
0
US
Hello, can anyone give me an example of how to use asp to retrieve or send information with a form that is on a flash site.

Thanks in Advance

Showtime
 
Which part is it that you want to know how to do? The Flash part or the ASP part? (or both)
 
both would be nice. I think I got the flash part down, but I'm not sure. The "URLEncode" is where i'm really confused.

Thanks
Showtime
 
Have you done the Form tutorial in the "How Do I..." section of Help?

 
Is this tutorial in flash?? or on this site somewhere?
 
Are you running in classic ASP or ASP.NET? If you're running classic, then after you grab the data for your variables, you would use something like
<code>
Response.Write("artistName=" _
+ Server.URLEncode (sArtistName))
</code>
to get the string to read:

and you'd end up with the data from sArtistName stuffed into the URL.

Hope this helps you.
 
Bekind4u,

Thank you very much, this is what I was looking for.

Thanks,
Showtime
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top