vote up 0 vote down star

Can someone provide me with a way of uploading files, such as images or text files,from an iphone app to a web server. I have found many examples but all are in php. I'm using C# with ASP.NET and need to do a simple upload. Thanks in advance.

I actually needed a solution for the iphone app. How to upload the file from the iphone to an asp.net website. I already have the upload and where it is to be stored, I just need assistance as far as the class to use on the iphone and how to incorporate that with the website.

flag
iPhone doesn't run .net – chupacabra Nov 4 at 6:19
Well, if you were looking for an iPhone app solution (thus, not c# code), you should really change your question's title and tags. I will retag it with Cocoa right now, because that's what you specified in your answer. – Maxim Z. Nov 12 at 4:33
@Chris, @Maxim Z; one word: monotouch – Marc Gravell Nov 12 at 5:29

4 Answers

vote up 1 vote down

You can use web browser on the iPhone to upload the files to your server.
On the server you can run your .NET page that accepts those files.

To implement this:
On the server: create a ASP.NET Page to upload file as describe here or here.
On the iPhone: open the browser and type the URL of your page (of course deployed to your server) and upload the files required.

link|flag
This is kind of what I had in mind. Do you know any resources or articles on that? – loyalpenguin Nov 4 at 15:59
Added some resources to the answer. – Dmitriy Nagirnyak Nov 4 at 22:08
vote up 0 vote down check

Hello again everyone. After some research I found a solution here. It Worked for me. Cheers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.