I'm using NeatUpload to provide upload progress status bar. Can anyone please help me understand why the registered event handler did not get called after the file was completely uploaded?
I'm using SqlServerUpload StorageProvider extender from NeatUpload 1.3.26 to stream the file directly into the database. The system event handler was registered in Page_Load method as follows:
I monitored the DB and did see the file got pushed into the DB. After the file was completely uploaded, a postback did occurred, however, the Button_Clicked event handler was never called so I couldn't execute SqlInputFile.ve rify() to retain the file inside the DB. So eventually, the file which I uploaded got removed from the DB.
Is there a way to list all the registered event handlers outstanding? I want to understand why the event was not invoked.... It almost seems as if the Button_Clicked event handler was lost somehow (or never registered). Do you know what might be the cause of this? I'm in great need of getting this to work, so if you can provide some feedback, I would greatly appreciate it.
Regards,
Loc Pham
I'm using SqlServerUpload StorageProvider extender from NeatUpload 1.3.26 to stream the file directly into the database. The system event handler was registered in Page_Load method as follows:
Code:
private void Page_Load(object sender, EventArgs e) { button.Click += new System.EventHandler(this.Button_Clicked); ... }
Is there a way to list all the registered event handlers outstanding? I want to understand why the event was not invoked.... It almost seems as if the Button_Clicked event handler was lost somehow (or never registered). Do you know what might be the cause of this? I'm in great need of getting this to work, so if you can provide some feedback, I would greatly appreciate it.
Regards,
Loc Pham
Comment