up vote 0 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

iPhone doesn't run .net – Muad'Dib Nov 4 '09 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 Zaslavsky Nov 12 '09 at 4:33
1  
@Chris, @Maxim Z; one word: monotouch – Marc Gravell Nov 12 '09 at 5:29
feedback

3 Answers

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|improve this answer
This is kind of what I had in mind. Do you know any resources or articles on that? – loyalpenguin Nov 4 '09 at 15:59
Added some resources to the answer. – Dmytrii Nagirniak Nov 4 '09 at 22:08
feedback
up vote 0 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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