upload file to server in a particular path
In Flex i want to upload开发者_如何转开发 a particular file to server form local system.how to do it? Thanks.
You cannot upload a file without using FileReference.browse()
followed by an upload()
. If it was possible, that would mean that a webpage can read any file from the user's machine without his knowledge or consent.
Can you even imagine the consequences of that?
You can upload byteArrays though if you are sending some images or texts. http://developer.amazonwebservices.com/connect/thread.jspa?messageID=76422
精彩评论