好的,我的第一篇文章,我希望标题有意义。
我有一个更新面板,里面有一个文件上传控件,里面有一个按钮来触发上传。下面我有一个 ListView,它被数据绑定在后面的文件中,其中包含一个上传的文件列表。更新面板有一个指向上传按钮的“PostBackTrigger”。
所有这些都按应有的方式工作。对于列出的每个项目,都有一个链接按钮可以删除该特定文件。这也可以正常工作,但问题是:它不会触发回发,我在搜索网络后尝试了多种方法,更不用说 stackoverflow 的答案了。我尝试了很多,但即使实施了看起来最好的解决方案,也没有真正发生。
ascx 文件(是的,如果重要的话,它是一个用户控件):
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Label ID="LabelUploadFile" runat="server" Text="Upload fil:"></asp:Label>
<br />
<asp:FileUpload ID="FileUploadDocument" runat="server" />
<br />
<asp:DropDownList ID="DropDownListDocumentType" runat="server"></asp:DropDownList>
<br />
<asp:Button ID="ButtonUploadFile" runat="server" Text="Upload fil" CssClass="nice small radius action button" onclick="ButtonUploadFile_Click" />
<br />
<br />
<br />
<asp:ListView ID="ListViewDocuments" runat="server" OnItemCommand="ListViewDocuments_ItemCommand">
<LayoutTemplate>
<table border="0" cellpadding="1">
<tr>
<th align="left">Type</th>
<th align="left">Dokument</th>
<th></th>
</tr>
<tr id="itemPlaceholder" runat="server"></tr>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td><asp:Label runat="server" ID="lblName"><%#Eval("Type") %></asp:Label></td>
<td><asp:Label runat="server" ID="lblType"><%#Eval("Dokument") %></asp:Label></td>
<td><asp:LinkButton ID="DeleteButton" OnClientClick="return confirm('Slet dokument?');" CommandName="Delete" CommandArgument='<%# Eval("id")%>' runat="server" Text="Slet"></asp:LinkButton></td>
</tr>
</ItemTemplate>
<EmptyDataTemplate>
<tr>
<td> </td>
<td>Du har ikke uploadet filer endnu.</td>
<td> </td>
</tr>
</EmptyDataTemplate>
</asp:ListView>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="ButtonUploadFile" />
<asp:AsyncPostBackTrigger ControlID="ListViewDocuments" EventName="ItemCommand" />
</Triggers>
(注意 asyncpostbacktrigger 只是我尝试过的另一个解决方案,我没有删除它。还有一个脚本管理器,它只是没有在上面的代码中表示)
来自后台文件的 ListViewDocuments_ItemCommand:
protected void ListViewDocuments_ItemCommand(object sender, ListViewCommandEventArgs e)
{
if (e.CommandName == "Delete")
{
//Send the file's ID to the data layer for deletion
_talentDataAccess.DeleteTalentFileByFileId(Convert.ToInt32(e.CommandArgument));
//Rebind the listveiw with a new list of files.
_fillFileList();
}
}
所以就像我说的,技术上一切正常,但简而言之,链接按钮不会刷新更新面板。
如果有任何问题或需要其他代码片段,我会及时回复。
先感谢您。