Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a FileUpload control (and it's not inside an UpdatePanel) and its hasFile property is always False.

   <asp:FileUpload ID="certificateUploader" runat="server"/>

Any thought?

share|improve this question
Be clear in your question. What happens exactly – JayOnDotNet Mar 13 '12 at 11:04
when i click on the browse and browse for file, select one and hit open, i can see the path of the file right on the fileUploader control, when i hit the Save button(customzied for my app) i check if it .hasFile it returns False each and everytime. – Alaa.Ali Mar 13 '12 at 12:08
Can you post some code here – JayOnDotNet Mar 13 '12 at 12:11
i've edited my Question with more code except for the last two lines that couldnt been copied – Alaa.Ali Mar 13 '12 at 12:30

3 Answers

up vote 7 down vote accepted

Add a trigger for your UpdatePanel

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

This will force a postback when the upload button is clicked.

Also add the line below to the Page_Load

Page.Form.Attributes.Add("enctype", "multipart/form-data");
share|improve this answer
will definitly give it a try :) – Alaa.Ali May 9 '12 at 6:05
This should be the correct answer. – DarrylGodden May 30 '12 at 16:05
Only adding The trigger did the trick for me. Thanks! – Dogahe Oct 10 '12 at 15:06
And what about the same problem with a FileUpload that isn't inside an UpdatePanel (as the question says)? – adripanico Oct 17 '12 at 9:36

You cannot upload files using AJAX => you should not be placing a FileUpload control inside an UpdatePanel because this UpdatePanel sends an AJAX request to the server.

share|improve this answer
i removed the fileupload tag from the updatepPanel. – Alaa.Ali Mar 13 '12 at 11:04
</asp:UpdatePanel> <asp:FileUpload ID="certificateUploader" runat="server"/> – Alaa.Ali Mar 13 '12 at 11:04
Great, and did this solve your problem? – Darin Dimitrov Mar 13 '12 at 11:10
1  
it did help alot. thank you Darin. – Alaa.Ali Mar 15 '12 at 12:08

the whole time it was about the permissions i had(or didn't have to be more specific) over the file am trying to upload, i granted the user the sufficient permissions and it all went well.

thanks a lot for your help and posts.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.