FileUpload controls don't do ajax!
A guy I work with mentioned this tip to me today so I thought I'd share it (not the ground-breaking first article I was hoping for but don't worry that's coming!):
FileUpload controls don't work with ajax, so its probably best not using them with ajax !
If you feel you must then the way to do it is to make your file upload submit button a postback trigger, and set the UpdateMode of your update panel to conditional. This allows you to do your ajax stuff as usual, but when you come to do the file upload you will have a full page refresh: -
<asp :UpdatePanel ID="AjaxUploader" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:PostBackTrigger ControlID="UploadButton"/>
</Triggers>
<ContentTemplate>
<asp:FileUpload ID="FileUpload1" runat="server" EnableViewState="true" />
<asp:Button ID="UploadButton" runat="server" Text="Upload File" OnClick="SomeFunction" />
</ContentTemplate>
</asp :UpdatePanel>
<Triggers>
<asp:PostBackTrigger ControlID="UploadButton"/>
</Triggers>
<ContentTemplate>
<asp:FileUpload ID="FileUpload1" runat="server" EnableViewState="true" />
<asp:Button ID="UploadButton" runat="server" Text="Upload File" OnClick="SomeFunction" />
</ContentTemplate>
</
One thing that really caught me out was a lovely little gotcha with asp:placeholders and their 'Visibility' property, I was toggling a form in and out of view and this caused the image upload to fail first time it was used, although it would then be fine after that. One quick solution is to use a div and play with it's style property instead: -
<div id="layerToToggle" runat="server" style="display:none">
<p>Content to toggle</p>
</div>
<p>Content to toggle</p>
</div>
Then in code behind:
layerToToggle.Style.Add(
"display", ""); // showlayerToToggle.Style.Add("display", "none"); // hide