このモーダル ポップアップ エクステンダを取得しましたが、FileUpload コントロールでファイルを取得できません。ここに私のコードがあります:
<asp:Button ID="targC" runat="server" Style="display: none;" Text="here" />
<ajax:ModalPopupExtender ID="myExtender" runat="server" BackgroundCssClass="myModalPopupbackGrnd"
TargetControlID="targC" PopupControlID="pnlUserRegNoti" OkControlID="btnDone">
</ajax:ModalPopupExtender>
<asp:Panel ID="pnlUserRegNoti" Width="70%" Style="display: none;" CssClass="myModalPopupload"
runat="server">
<center>
<br />
<br />
<table width="80%">
<tr>
<td>
<center>
<h3><b>Requirements of New Application</b></h3>
<asp:HiddenField ID="validateUploads" runat="server" />
<table>
<tr>
<td>DTI Application Form</td>
<td><asp:FileUpload ID="dtiFileUpload" runat="server" onchange = "return CheckForTestFileDTI();" />
<asp:CustomValidator ID="CustomValidator1" ControlToValidate="dtiFileUpload" runat="server" OnServerValidate="CustomValidator1_ServerValidate" Text="File is too large. Max size is 20MB."></asp:CustomValidator>
</td>
</tr>
<tr>
<td>
<center>
<asp:Button ID="btnDone" runat="server" CssClass="button" Text="Done" OnClick="btnDone_Click" />
</center>
</td>
</tr>
</table>
</center>
</asp:Panel>
FileUpload コントロールのファイルを使用して、WindowsAzure にアップロードします。modalpopupextender 内のファイルアップロードの値を取得するにはどうすればよいですか?