How to upload a file in asp.net without reloading a page
如何在不重新加载页面的情况下在asp.net上传文件
6 个解决方案
#1
4
You will need to perform asynchronous file upload using Ajax and send the file in chunks of bytes.
您需要使用Ajax执行异步文件上载,并以块的字节发送文件。
Authentic AsyncUpload in original AjaxConotrlToolkit
原始AjaxConotrlToolkit中的AsyncUpload
http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AsyncFileUpload/AsyncFileUpload.aspx
Some other references that may interest you..
您可能感兴趣的其他一些参考文献..
- Matt berseth's Asyncupload <-- Recommended
- SWFUpload
- FileUp
- Flajaxian FileUploader
- RadUpload
- NeatUpload
- ASP.Net File Upload/Download Module <-- Recommended
Matt berseth的Asyncupload < - 推荐
ASP.Net文件上传/下载模块< - 推荐
#2
2
You should find a suitable ajax uploader. One wise choice would be a jquery ajax uploader. I hope this jquery ajax uploader, free download, would win your heart. All the best!
你应该找到一个合适的ajax上传器。一个明智的选择是jquery ajax uploader。我希望这个jquery ajax uploader,免费下载,会赢得你的心。祝一切顺利!
#3
2
There are many ways to do this. but if you need some extended functionality try this sample.
有很多方法可以做到这一点。但如果您需要一些扩展功能,请尝试此示例。
#4
0
Here is a cross-browser script to upload file using ajax. You can search google for Ajax file upload and find out other tools and techniques if this one does not works for you.
这是一个使用ajax上传文件的跨浏览器脚本。您可以搜索谷歌搜索Ajax文件,并找到其他工具和技术,如果这不适合你。
#5
0
jquery-transmit is a sophisticated jQuery plugin providing an elegant multi-file upload utility. At the core of the plugin is a small SWF file which provides single or multiple file selection and upload services
jquery-transmit是一个复杂的jQuery插件,提供优雅的多文件上传实用程序。插件的核心是一个小型SWF文件,它提供单个或多个文件选择和上传服务
#6
0
try this
it uses jquery to upload multiple files... you can also download sample project which works fine.. and uploads files quickly. you may need to change your web.config to set lenght of data can be passed ... in the sample project...
它使用jquery上传多个文件...你也可以下载工作正常的示例项目..并快速上传文件。您可能需要更改web.config以设置数据的长度,可以在示例项目中传递...
#1
4
You will need to perform asynchronous file upload using Ajax and send the file in chunks of bytes.
您需要使用Ajax执行异步文件上载,并以块的字节发送文件。
Authentic AsyncUpload in original AjaxConotrlToolkit
原始AjaxConotrlToolkit中的AsyncUpload
http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AsyncFileUpload/AsyncFileUpload.aspx
Some other references that may interest you..
您可能感兴趣的其他一些参考文献..
- Matt berseth's Asyncupload <-- Recommended
- SWFUpload
- FileUp
- Flajaxian FileUploader
- RadUpload
- NeatUpload
- ASP.Net File Upload/Download Module <-- Recommended
Matt berseth的Asyncupload < - 推荐
ASP.Net文件上传/下载模块< - 推荐
#2
2
You should find a suitable ajax uploader. One wise choice would be a jquery ajax uploader. I hope this jquery ajax uploader, free download, would win your heart. All the best!
你应该找到一个合适的ajax上传器。一个明智的选择是jquery ajax uploader。我希望这个jquery ajax uploader,免费下载,会赢得你的心。祝一切顺利!
#3
2
There are many ways to do this. but if you need some extended functionality try this sample.
有很多方法可以做到这一点。但如果您需要一些扩展功能,请尝试此示例。
#4
0
Here is a cross-browser script to upload file using ajax. You can search google for Ajax file upload and find out other tools and techniques if this one does not works for you.
这是一个使用ajax上传文件的跨浏览器脚本。您可以搜索谷歌搜索Ajax文件,并找到其他工具和技术,如果这不适合你。
#5
0
jquery-transmit is a sophisticated jQuery plugin providing an elegant multi-file upload utility. At the core of the plugin is a small SWF file which provides single or multiple file selection and upload services
jquery-transmit是一个复杂的jQuery插件,提供优雅的多文件上传实用程序。插件的核心是一个小型SWF文件,它提供单个或多个文件选择和上传服务
#6
0
try this
it uses jquery to upload multiple files... you can also download sample project which works fine.. and uploads files quickly. you may need to change your web.config to set lenght of data can be passed ... in the sample project...
它使用jquery上传多个文件...你也可以下载工作正常的示例项目..并快速上传文件。您可能需要更改web.config以设置数据的长度,可以在示例项目中传递...