Rank: Newbie Groups: Member
Joined: 10/25/2011 Posts: 7
|
Hello, I'm wondering why my server-side event is not firing.
----- ASPX markup ------ <eo:AJAXUploader ID="AJAXUploader1" runat="server" OnFileUploaded="AJAXUploader1_FileUploaded" Width="250px" TempFileLocation="~/EO_Upload" AutoPostBack="true"> </eo:AJAXUploader>
---- Code behind ----- Protected Sub AJAXUploader1_FileUploaded(ByVal sender As Object, ByVal e As System.EventArgs) 'DoSomething End Sub
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The code you posted looks fine. So the problem is somewhere else. I would recommend you to try the same in a separate blank project and get that working first, then move it back to your current project. If that does not work, try to comment contents/code out of your non-working page block by block and see if you can find what triggered the problem. Usually the solution should be obvious as soon as you know what triggered the problem.
Thanks!
|