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?
|
I have a
Any thought? |
|||||||||
|
|
Add a trigger for your UpdatePanel
This will force a postback when the upload button is clicked. Also add the line below to the Page_Load
|
|||||||||
|
|
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. |
|||||||||||
|
|
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. |
|||
|
|