I have a HTMLEditorExtender with AjaxFileUpload toolbar in it. and the HTMLEditorExtender is in the asp:Panel.
This Panel is not visible(set Visible="False" in aspx page) by default, and in the first time the page load, I will judge some condition and then set the Panel's Visible property to "true".
At this condition, the file upload will not work.
The detailed behavior is:
select a jpg file and click "upload", a progress is shown from 0% to 100%,
but no event triggered(can not enter ImageUploadComplete function), it seems hang.
and no error message showed.
I have a workaround to fix my issue:
use style to set the Panel's display property to "none" and then set it to "block".
This time it works!
This Panel is not visible(set Visible="False" in aspx page) by default, and in the first time the page load, I will judge some condition and then set the Panel's Visible property to "true".
At this condition, the file upload will not work.
The detailed behavior is:
select a jpg file and click "upload", a progress is shown from 0% to 100%,
but no event triggered(can not enter ImageUploadComplete function), it seems hang.
and no error message showed.
I have a workaround to fix my issue:
use style to set the Panel's display property to "none" and then set it to "block".
This time it works!