Click here to Skip to main content
15,887,214 members
Articles / Web Development / ASP.NET

Multiple File Upload Custom Control in ASP.NET

Rate me:
Please Sign up or sign in to vote.
3.44/5 (9 votes)
23 Sep 2009CPOL1 min read 70.5K   3.1K   26  
There is already a control available in .NET for single upload. There are cases where we actually have requirement of multiple and bulk select upload of files in application so as to achieve this functionality I came up with the solution that will help developer a lot..
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Globalization;
using System.Threading;
using System.Collections.Generic;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        // allows the javascript function to do a postback and call the onClick method 
        // associated with the linkButton LinkButton1. 
        string jscript = "function UploadComplete(){" + ClientScript.GetPostBackEventReference(LinkButton1, "") + "};";               
        Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "FileCompleteUpload", jscript, true); 
    }
    protected void LinkButton1_Click(object sender, EventArgs e)
    {
        // Do something that needs to be done such as refresh a gridView 
        // say you had a gridView control called gvMyGrid displaying all 
        // the files uploaded. Refresh the data by doing a databind here. 
        // gvMyGrid.DataBind(); 
        // Add some action
       
    } 

    
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions