A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: asp.net variables

  1. #1
    Senior Member
    Join Date
    Oct 2002
    Location
    Copenhagen
    Posts
    228

    asp.net variables

    Hi guys
    Can anyone tell me, how I with asp.net pick up variables sent from a flash-movie?
    Thanks

  2. #2
    Senior Member Ex-Ess's Avatar
    Join Date
    Nov 2002
    Location
    York (England)
    Posts
    588
    Make sure in flash you are using "POST" as the send var method.

    In the ASP you just use : Request.QueryString.Item("varName")

  3. #3
    Senior Member
    Join Date
    Oct 2002
    Location
    Copenhagen
    Posts
    228

    Querystring

    thanks!
    Found another answer earlier:

    void Page_Load(Object S, EventArgs E)
    {
    string myVar= Request["variable"];
    Response.Write(myVar);

    }

  4. #4
    Senior Member
    Join Date
    May 2002
    Location
    The Great Northwest
    Posts
    380

    WebService

    Just a thought you can implement a web service and flash can exchange data with the server by essentially calling a function inside of flash.
    God bless you!

  5. #5
    Senior Member
    Join Date
    Oct 2002
    Location
    Copenhagen
    Posts
    228
    ok, without the use of asp (asp.net)?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center