I need to built a page that user can drag and drop file and upload it on ftp server. Its just an upload and nothing else. Does anyone have any idea?
Asked
Active
Viewed 2,165 times
0
-
same as this ? http://stackoverflow.com/questions/1663741/is-there-a-good-jquery-drag-and-drop-file-upload-plugin – Shrinath Feb 08 '11 at 09:24
-
@Shrinath, those links are based on HTML5 and just working in certain browser. I need cross browser solution. – Jay Feb 08 '11 at 16:19
-
As @Dee said, try googling for JQuery plugins.. There are many... – Shrinath Feb 09 '11 at 02:39
1 Answers
2
drag n drop is a clientside issue, ASP runs on the server.
jquery is the correct approach for clientside coding problems. jQuery is crossbrowser compatible
just google jQuery drag n drop upload for examples

Dee
- 1,432
- 1
- 9
- 8
-
@Thanks Dee. About ASP I meant using jQuery for interface, drag n drop, etc and using ASP for upload part. Do you think its possible? Do you have any example? – Jay Feb 09 '11 at 05:22
-
I ran the google search for you and immediatley found this: http://plugins.jquery.com/project/dnd-file-upload – Dee Feb 09 '11 at 19:36
-