Добрый день. Есть такая задача - пользователь может выбрать один или несколько файлов, и по нажатию кнопки загрузить их на сервер.
Я попытался решить задачу с помощью
jQuery Multiple File Upload Plugin и
jQuery Form Plugin.
Вот что получилось:
Код:
|
<html>
<head>
<script src='http://jquery-multifile-plugin.googlecode.com/svn/trunk/jquery.js' type="text/javascript"></script>
<script src='http://jquery-multifile-plugin.googlecode.com/svn/trunk/jquery.form.js' type="text/javascript" language="javascript"></script>
<script src='http://jquery-multifile-plugin.googlecode.com/svn/trunk/jquery.MultiFile.js' type="text/javascript" language="javascript"></script>
</head>
<body>
<form id="myForm" action="http://localhost/BlackWater.Web/UploadHandler.ashx" method="POST" enctype="multipart/form-data">
<input id="multiInput" type="file" class="multi" maxlength="3"/>
<input type="submit" value="Submit" />
</form>
</body>
</html> |
UploadHandler.ashx - хендлер, написанный на ASP.NET.
Если запускать под IE - то все работает, в Request.Files содержаться выбранные файлы.
А под chrome и firefox коллекция Files пустая...
Что делать, куда копать ?