I have a fileupdload control inside update panel. I have handle this upload by using following line
<Triggers>
<asp:PostBackTrigger ControlID="btnSave" />
</Triggers>
But when i using it i don't get the JavaScript message i.e. i have written like this
ScriptManager.RegisterStartupScript(this, this.GetType(), "alert", "alert('File Upload Successfully!!')", true);
Now My issue is this message not showing when i use this postbacktrigger. But when i remove the trigger tag, i got the message properly.
Please tell me what is the error.
Thanks for advance