我正在使用 radgrid nestedviewttemplate 在行展开时显示产品的详细信息。我的nestedview 模板中还有一个链接按钮,单击该按钮可下载文件。我用于下载的代码在 radgrid 外部工作,但包含在 Nestedviewtemplate 中时失败下载。这是我的代码。
<telerik:RadGrid ID="loggedInUserOwnResourcesRadGrid" AutoGenerateColumns="false">
<MasterTableView AutoGenerateColumns="false">
<Columns>
<telerik:GridTemplateColumn DataField=" Name">
<HeaderTemplate><asp:LinkButton ID="LinkButtonForTitleOfGridViewColumn"
runat="server" CommandName="Sort" CommandArgument="Name">Resource Name</asp:LinkButton>
</HeaderTemplate>
<ItemTemplate>
<asp:LinkButton ID="LinkButtonOfAParticularName" runat="server" Text='<%# Eval(" Name")%>'></asp:LinkButton>
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
<NestedViewSettings >
<ParentTableRelation>
<telerik:GridRelationFields DetailKeyField="ID" MasterKeyField="ID"/>
</ParentTableRelation>
</NestedViewSettings>
<NestedViewTemplate>
<asp:Panel ID="NestedViewPanel" runat="server">
<div >
<fieldset >
<legend ><b>Detail Info on Resource : <%#Eval("Name") %></b>
</legend>
Download File :
<asp:LinkButton ID="filenamelinkbutton" Text='<%# Eval("Filename")%>' CommandArgument='<%#
Eval("PathToFile")%>' OnCommand="filenamelinkbutton_Clicked" CommandName="filenamelinkbutton_Clicked"
runat="server" ToolTip="Click To Download" ForeColor="Blue" ></asp:LinkButton>
</fieldset>
</div>
</asp:Panel>
</NestedViewTemplate>
</MasterTableView>
</telerik:RadGrid>
protected void filenamelinkbutton_Clicked(object sender, CommandEventArgs e)
{
string downloadfilename = e.CommandArgument.ToString();
try
{
FileInfo resourcefilepathusingfileinfo = new FileInfo("~/" + downloadfilename);
string filename = resourcefilepathusingfileinfo.Name;
Response.ContentType = "application/download";
Response.AppendHeader("Content-Disposition", "attachment;filename=" + filename);
Response.TransmitFile(Server.MapPath("~/" + "ClientBin/" + "Uploads/" + filename));
HttpContext.Current.ApplicationInstance.CompleteRequest();
// Response.End();
}
catch (Exception ex)
{
}
}