Today I will explains to you how to upload files using JQuery Ajax in ASP.NET 5.
One of the very common task in web application is allowing user to upload files from the client machine to Server. usually files are uploaded along with a form submission. But using JQuery and Ajax we can accomplish this task without the entire page post back.In such cases, you can allow a user to select files using the FileUpload server control of ASP.NET and then upload those files to the server through an Ajax request to a generic handler.
Requirement
- Web form
- JQuery
- Generic handler
Web form
<table>
<tr>
<td>File:</td>
<td>
<asp:FileUpload ID=”fupload” runat=”server” onchange=’prvimg.UpdatePreview(this)’ /></td>
<td><asp:Image ID=”imgprv” runat=”server” Height=”90px” Width=”75px” /></td>
</tr>
<tr>
<td></td>
<td><asp:Button ID=”btnUpload” runat=”server” cssClass=”button” Text=”Upload Selected File” /></td>
</tr>
</table>
JQuery
$(“#btnUpload”).click(function (evt) {
var fileUpload = $(“#fupload”).get(0);
var files = fileUpload.files;
var data = new FormData();
for (var i = 0; i < files.length; i++) {
data.append(files[i].name, files[i]);
}
$.ajax({
url: “FileUploadHandler.ashx”,
type: “POST”,
data: data,
contentType: false,
processData: false,
success: function (result) { alert(result); },
error: function (err) {
alert(err.statusText)
}
});
evt.preventDefault();
});
FileUploadHandler.ashx
<%@ WebHandler Language=”C#” Class=”FileUploadHandler” %>
using System;
using System.Web;
public class FileUploadHandler : IHttpHandler
{
public void ProcessRequest (HttpContext context)
{
if (context.Request.Files.Count > 0)
{
HttpFileCollection files = context.Request.Files;
for (int i = 0; i < files.Count; i++)
{
HttpPostedFile file = files[i];
string fname = context.Server.MapPath(“~/uploads/” + file.FileName);
file.SaveAs(fname);
}
context.Response.ContentType = “text/plain”;
context.Response.Write(“File Uploaded Successfully!”);
}
}
public bool IsReusable
{
get
{
return false;
}
}
}
DiscountService.biz is the best choice to host to your ASP.NET 5. Only $2.oo/month you can start your bussiness. Its really very cheap, best, reliable and recommended ASP.NET hosting. DiscountService.biz proudly offered the best and cheap ASP.NET 5 hosting, offer powerful and reliable ASP.NET 5 Hosting, with automated tools to allow quick and easy installation of WordPress, as well as other applications.
Reasons why you should choose DiscountService.biz as your ASP.NET 5 Hosting provider:
Best and Friendly Support :
Dedicated Application Pool :
With DiscountService.biz, your site will be hosted using isolated application pool in order to meet maximum security standard and reliability.
Uptime & Support Guarantees :
DiscountService.biz so confident in hosting services they will not only provide you with a 30 days money back guarantee, but also give you a 99.9% uptime guarantee.