0

我错过了一些简单的东西。

我正在生成一些绑定到 GridView 的二进制文件。

    FileDownloadGrid.DataSource = downloadList;
    FileDownloadGrid.DataBind();

网格中有趣的部分是这样编码的:

    <asp:TemplateField>
       <ItemTemplate>
         <asp:LinkButton ID="DownloadFile" runat="server" Text="Download" CommandName="DownloadFile1"
           CommandArgument='<%#Eval("FullName") +"|" + Eval("Name") %>'> 
         </asp:LinkButton>
       </ItemTemplate>
     </asp:TemplateField>

我正在尝试使用 IFRAME Ajax 方法来下载文件。

function InitializeRequest(sender, args) {
  // Check to be sure this async postback is actually
  //   requesting the file download.
  if (sender._postBackSettings.sourceElement.id == "FileDownloadGrid") {
    // Create an IFRAME.
    var iframe = document.createElement("iframe");

    // Get the desired region from the dropdown.
    var fName = $get("CommandArgument").value;

    // Point the IFRAME to GenerateFile, with the
    //   desired region as a querystring argument.
    iframe.src = "Default2.aspx?fName=" + fName;

    // This makes the IFRAME invisible to the user.
    iframe.style.display = "none";

    // Add the IFRAME to the page.  This will trigger
    //   a request to GenerateFile now.
    document.body.appendChild(iframe);
  }
}

从我在网上找到的内容来看,我无法获取 CommandArgument 客户端,而且我似乎无法弄清楚如何在脚本中获取“全名”。

有人可以指出我正确的方向吗?我正在为应该很简单的事情拉头发。

谢谢

基因

4

1 回答 1

0

咬牙切齿后,我决定直接调用 JavaScript 函数。

这是javascript:

function DownloadFile(filename) {
    // Check to be sure this async postback is actually
    // Create an IFRAME.

    var iframe = document.createElement("iframe");
    // Point the IFRAME to GenerateFile, with the
    //   desired region as a querystring argument.
    iframe.src = "Default2.aspx?fileName=" + filename;

    // This makes the IFRAME invisible to the user.
    iframe.style.display = "none";

    // Add the IFRAME to the page.  This will trigger
    //   a request to GenerateFile now.
    document.body.appendChild(iframe);
}

这是对我有用的代码:

<asp:LinkButton ID="DownloadFile" runat="server" Text="Download"  
   onClientClick='<%# string.Format("DownloadFile(\"{0}\");", Eval("FullName")) %>'></asp:LinkButton>

一个关键点似乎是将“全名”路径从具有 \ 转换为 /。

      string serverPath = toFileName.Replace("\\", "/");

然后在 default2.aspx.cs 我这样做:

protected void Page_Load(object sender, EventArgs e)
{
  string workPath = Request.QueryString["fileName"];
  string fullPath = workPath.Replace('/', '\\');
  string fileName = Path.GetFileName(fullPath);
  string attachmentHeader = String.Format("attachment; filename={0}", fileName);
  Response.AppendHeader("content-disposition", attachmentHeader);
  Response.ContentType = "application/octet-stream";
  Response.WriteFile(fullPath);
  Response.End();
}

我确信有更好的方法来做所有这些,但这是我通过乱搞想出来的,我希望它可以帮助其他人。

于 2013-06-12T02:43:04.700 回答