user352353
user352353

Reputation:

File Upload from FLEX or ActionScript 3 to ASPX .NET?

I would like to know how to upload a file from ActionScript 3 (From a FLEX Application) to a Dot Net Back End, maybe to an ASHX file, an ASPX file or similar and using C# as core backend language.

Thanks!!

Upvotes: 0

Views: 1402

Answers (1)

JeffryHouser
JeffryHouser

Reputation: 39408

Use the FileREference class to pass the file from Flash Player to the backend service. Googling provides a bunch of examples on how to do this, here are the top 2:

http://algorithmist.wordpress.com/2007/10/19/flex-file-upload-with-aspnet/

http://dotnetslackers.com/community/blogs/haissam/archive/2008/03/29/upload-multiple-files-using-asp-net-amp-adobe-flex.aspx

Upvotes: 1

Related Questions