Skip to main content

Updatepanel with fileupload control

Updatepanel with fileupload control

 If we use fileupload control to submit any file on our aspx page which having UpdatePanel control on it
then if we click on submit button it will give you error & hasfile false & get null exception.


To resolve this problem just add below code on aspx page:

<Triggers>
<asp:PostBackTrigger ControlID="btnSubmit" />
</Triggers>


Hope this will help you...

Regards,
Gajanan

Comments

Popular posts from this blog

Creating package in Oracle Database using Toad For Oracle

What are Packages in Oracle Database A package is  a group   of procedures, functions,  variables   and  SQL statements   created as a single unit. It is used to store together related objects. A package has two parts, Package  Specification  and Package Body.