Click here to Skip to main content
15,908,274 members

Comments by job777 (Top 2 by date)

job777 22-Dec-10 23:30pm View    
hiii...

//AsyncFileUpload_UploadedComplete event

protected void fupUpload_UploadedComplete(object sender, AjaxControlToolkit.AsyncFileUploadEventArgs e)
{
UploadFunction();
}


When i browse using fupUpload control,this event is fired. But i have a save button which saves all the details(including this attachment) to the database. The problem is that when i click save button for the first time,fupUpload_UploadedComplete is alse fired.So i have to click save button twice to save all details to db
job777 22-Dec-10 23:25pm View    
Deleted
hiii...

//AsyncFileUpload_UploadedComplete event

protected void fupUpload_UploadedComplete(object sender, AjaxControlToolkit.AsyncFileUploadEventArgs e)
{
UploadFunction();
}

When i browse using fupUpload control,this event is fired.
But i have a save button which saves all the details(including this attachment) to the database. The problem is that when i click save button for the first time,fupUpload_UploadedComplete is alse fired.So i have to click save button twice to save all details to db.