Click here to Skip to main content
15,888,286 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i am using mnultiple asp:UpdatePanel in one asp:UpdatePanel so, i can't used postbacktrigger

What I have tried:

<asp:AsyncPostBackTrigger ControlID="btnUploadImage" EventName = "Click"/>
<asp:PostBackTrigger ControlID="btnUploadImage" />
Posted
Updated 28-Jun-17 2:45am
v2
Comments
Thomas Nielsen - getCore 28-Jun-17 4:15am    
don't put a panel in a panel as the updatepanels update on different situation, they should update their content, and that content shouldn't be other updatepanels.
You have to submit more code for the solution to be adviceable upon.
F-ES Sitecore 28-Jun-17 4:50am    
FileUpload doesn't work in an asynch updatepanel anyway so if you have an upload control ditch the updatepanel.

1 solution

The FileUpload control is designed to be used only in postback scenarios and not in asynchronous postback scenarios during partial-page rendering.

That's the problem...
However there are several controls/solutions that solve the problem - use the Google 12665681...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900