我错过了一些简单的东西。
我正在生成一些绑定到 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 客户端,而且我似乎无法弄清楚如何在脚本中获取“全名”。
有人可以指出我正确的方向吗?我正在为应该很简单的事情拉头发。
谢谢
基因