0

The html tag for file uploading is not working in iphone:

<input type="file" id="Fileid1" runat="server"/>

It is showing inactive in iphone in aspx page. So how the file uploading can run in iphone using html...

MarcinJuraszek
  • 124,003
  • 15
  • 196
  • 263
  • possible duplicate of [iPhone File Upload with HTML](http://stackoverflow.com/questions/5784352/iphone-file-upload-with-html) – MarcinJuraszek Feb 20 '13 at 07:31

2 Answers2

2

I have checked and it's working using below code:

input type="file" accept="image/*;capture=camera">

DeveshM
  • 476
  • 4
  • 11
-1

File upload is not supported using a web interface in ios.

kaar3k
  • 994
  • 7
  • 15
  • Check this [link](http://stackoverflow.com/questions/6744761/how-to-upload-files-in-a-uiwebview-on-an-ipad).You can use some alternate mechanism. – kaar3k Feb 20 '13 at 09:46