0

我的问题很简单,希望能回答。

我正在制作一个带有文件上传控件的简单表单,该控件最初未在 AJAX 面板中使用,对于我的一生,我无法弄清楚为什么我的代码保持不变,找不到 FileUpload 控件的内容。

<asp:Panel ID="pnlUpload" runat="server" class="workerDetailsPanelLeft" Visible="true">

<h3 class="titleHighlightStyle">Probation Documents</h3><br />
<table cellspacing="0">
<tr>
<td class="standardLabel" valign="top">Current Documents</td>
<td colspan="2">
<asp:ListBox ID="lstDocs" runat="server" Width="200px"></asp:ListBox>
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td>
<asp:ImageButton ID="btnSelect" runat="server" SkinID="selectprobationdoc"/>
</td>
<td class="standardLabel" style ="width:200px">Select documents</td>
</tr>
<tr>
<td>
&nbsp;
</td>
</tr>
<tr>
<td class="standardLabel">Upload Documents</td>
<td colspan="2">
<asp:FileUpload ID="uplDoc" runat="server" Height="22px" Width="200px"/> 
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
<td>
<asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_Click" CausesValidation="False" />
</td>
</tr>
<tr>
<td>
&nbsp;
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblUploadError" runat="server" Text="Probation document required" ForeColor="Red" Visible="false"></asp:Label> 
</td>
</tr>
</table>             
</asp:Panel>

原谅我删除了空格的格式!!

现在,当我的标记是这样并且我在 FileUpload 上调用 .HasFile() 时,它会返回一个空值吗?

当我添加以下内容时

<asp:UpdatePanel ID="ContentPanel" UpdateMode="Conditional" runat="server" ChildrenAsTriggers="true">
<Triggers>
<asp:PostBackTrigger ControlID="btnSave" />
</Triggers>
<ContentTemplate>
  *Markup as above*

我可以得到控件的内容。我知道带有文件上传控制的 Ajax 更新面板存在问题,解决方案是添加回发触发器,但是任何人都可以从这个标记中看到为什么它可能找不到文件?

            if (this.uplDoc.HasFile)
        {
            String fileExtension = System.IO.Path.GetExtension(uplDoc.FileName).ToLower();
            String validExt = sAllowedExt;

            if (validExt.IndexOf("," + fileExtension + ",") != -1)
            {
                if (this.uplDoc.FileBytes.Length >= 0)
                {
                    return string.Empty;
                }
                else
                {
                    return "PROC0003";  //Invalid File Size            
                }
            }
            else
            {
                return "PROC0002"; //Invalid file type        
            }
        }

以上是检查背后的初始代码,这与添加更新面板相比从未改变。

有人可以帮我理解我错过了什么吗?

谢谢

4

1 回答 1

0

这是一个简单的答案,

托管内容页面的母版页将这些页面包装在更新面板中,因此为什么我的代码没有获取文件上传控件的内容,它正在执行异步回发而不是完整回发。

无论如何谢谢@Shai

于 2012-07-19T11:42:03.977 回答