I have a few lables I want to display after uploading of files comples. For uploading i am using ajaxfileupload and its working fine. I realized that it has limitation and that is it can not process regular asp.net control in same function as showing below.
protected void File_Upload(object sender, AjaxFileUploadEventArgs e)
{
string filename = e.FileName;
string filename1 = @"C:\" + filename;
AjaxFileUpload1.SaveAs(filename1);
//>>>> This lable doesnt appear after uploading file completes <<<<<
label1.Visible = true;
}
<asp:AjaxFileUpload ID="AjaxFileUpload1" runat="server" AllowedFileTypes="xml"
MaximumNumberOfFiles="10" OnUploadComplete="File_Upload" OnClientUploadComplete= ...
Go to the complete details ...