| 123456789101112131415161718192021222324 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="callplantaskresultdataexcel.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.calloutmanage.callplantaskresultdataexcel" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- <script type="text/javascript">
- function Init() {
- //alert(parent.document.getElementById("htHtmlReport").value);
- document.getElementById("htHtmlReport").value = parent.document.getElementById("htHtmlReport").value;
- document.getElementById("exportExcel").click();
- }
- </script>
- </head>
- <body onload="Init();">
- <form id="form1" runat="server">
- <asp:HiddenField ID="htHtmlReport" runat="server" />
- <asp:LinkButton ID="exportExcel" Height="24px" runat="server" class="btnSearch"
- onclick="exportExcel_Click" >导出Excel</asp:LinkButton>
- </form>
- </body>
- </html>
|