


function AutomateExcel() {
try {
// Start Excel and get Application object.
var oXL;
try
{
oXL = new ActiveXObject("Excel.Application");
}
catch(e)
{
alert("Excel cannot be started!nn If you are sure that Excel is already installed on your computer," "Then please adjust the security level of IE. nSpecific operations: n" "Tools → Internet Options → Security → Custom Level → Initialize and script ActiveX not marked as safe → Enable");
return false;
}
//Get a new workbook .
var oWB = oXL.Workbooks.Add();
var oSheet = oWB.ActiveSheet;
var table = $("#GridView1")[0];
var rows = table. rows;
var columns = table.rows(0).cells;
var codes = "";
//Set title
var name = "Page ";
oXL.Caption = name;
oSheet.Name = name;
//Set header
oSheet.Cells(1, 1).Value = "Application number";
oSheet.Cells(1, 2).Value = "Shipping Amount";
oSheet.Cells(1, 3).Value = "Marketing Department";
oSheet.Cells(1, 4).Value = "Business Personnel";
oSheet.Cells(1, 5).Value = "Internal Contract Number";
oSheet.Cells(1, 6).Value = "Customer Name";
oSheet. Cells(1, 7).Value = "Currency";
oSheet.Cells(1, 8).Value = "Customer shipping date";
oSheet.Cells(1, 9).Value = "Country Don't";
oSheet.Cells(1, 10).Value = "Verification note number";
oSheet.Cells(1, 11).Value = "Invoice number";
oSheet.Cells( 1, 12).Value = "Customs declaration date";
//Get the application number of the current page
for (var i = 2; i codes = " '" rows(i - 1).cells(0).innerText "',";
}
codes = "''";
//Get the data and fill it into EXCEL
$ .post("../Handlers/ShippingApplyHandler.ashx",
{ Action: "ExportData", ExportCondition: codes },
function (views) {
if (views != null) {
var beginindex = 1;
var endindex = 1;
for (var i = 0; i endindex ;
oSheet.Cells(i 2, 1 ).Value = views[i].SACode;
oSheet.Cells(i 2, 2).Value = views[i].AmountSum;
oSheet.Cells(i 2, 3).Value = views[ i].Department;
oSheet.Cells(i 2, 4).Value = views[i].SalesName;
oSheet.Cells(i 2, 5).Value = views[i].ContractNo;
oSheet.Cells(i 2, 6).Value = views[i].CustomerName;
oSheet.Cells(i 2, 7).Value = views[i].CurrencyCode;
if (views[ i].CustomerSchedule != null) {
oSheet.Cells(i 2, 8).Value = ConvertToJSDate(views[i].CustomerSchedule).Format("yyyy-MM-dd");
}
oSheet.Cells(i 2, 9).Value = views[i].Country;
oSheet.Cells(i 2, 10).Value = views[i].VerificationNumber;
oSheet.Cells( i 2, 11).Value = views[i].InvoiceNumber;
if (views[i].CustomsDate != null) {
oSheet.Cells(i 2, 12).Value = ConvertToJSDate(views[ i].CustomsDate).Format("yyyy-MM-dd");
}
if (i > 0 && views[i - 1].SACode == views[i].SACode) {
oSheet.Range(oSheet.Cells(beginindex, 1), oSheet.Cells(endindex, 1)).Merge();
oSheet.Range(oSheet.Cells(beginindex, 2), oSheet.Cells(endindex , 2)).Merge();
oSheet.Range(oSheet.Cells(beginindex, 3), oSheet.Cells(endindex, 3)).Merge();
oSheet.Range(oSheet.Cells( beginindex, 4), oSheet.Cells(endindex, 4)).Merge();
oSheet.Range(oSheet.Cells(beginindex, 5), oSheet.Cells(endindex, 5)).Merge();
oSheet.Range(oSheet.Cells(beginindex, 6), oSheet.Cells(endindex, 6)).Merge();
oSheet.Range(oSheet.Cells(beginindex, 7), oSheet.Cells(endindex , 7)).Merge();
oSheet.Range(oSheet.Cells(beginindex, 8), oSheet.Cells(endindex, 8)).Merge();
beginindex = endindex;
}
else {
beginindex ;
}
}
}
}, "json");
//Set automatic column width
oSheet.Columns.AutoFit( );
//Set excel as visible
oXL.Visible = true;
//Put Excel under user control
oXL.UserControl = true;
//Suppress prompts
oXL.DisplayAlerts = false;
//Release resources
//oXL = null;
//oWB = null;
//oSheet = null;
}
catch (e ) {
}
}

ECharts是一款功能强大、灵活可定制的开源图表库,可用于数据可视化和大屏展示。在大数据时代,统计图表的数据导出和分享功能变得越来越重要。本文将介绍如何通过Java接口实现ECharts的统计图表数据导出和分享功能,并提供具体的代码示例。一、ECharts简介ECharts是百度开源的一款基于JavaScript和Canvas的数据可视化库,具有丰富的图表

如何利用Vue和ElementPlus实现数据的导出和打印功能近年来,随着前端开发的迅速发展,越来越多的网页应用需要提供数据导出和打印功能,以满足用户对数据的多样化使用需求。Vue作为一种流行的JavaScript框架,配合ElementPlus组件库的使用,可以轻松实现数据的导出和打印功能。本文将介绍一种基于Vue和ElementPlus的数据导出和

如何使用PHP实现数据导入和导出Excel功能导入和导出Excel文件是Web开发中常见的需求之一,通过使用PHP语言,我们可以轻松地实现这一功能。在本文中,我们将介绍如何使用PHP和PHPExcel库来实现数据导入和导出Excel文件的功能。首先,我们需要安装PHPExcel库。你可以从官方网站(https://github.com/PHPOffice/P

PHP表单处理:表单数据导出与打印在网站开发中,表单是不可或缺的一部分。当网站上的表单被用户填写并提交后,开发者需要对这些表单数据进行处理。本文将介绍如何使用PHP处理表单数据,并演示如何将数据导出为Excel文件和打印出来。一、表单提交与基本处理首先,需要创建一个HTML表单,供用户填写并提交数据。假设我们有一个简单的反馈表单,包含姓名、邮箱和评论。HTM

如何使用Vue和Element-UI实现数据的导入和导出功能近年来,随着Web应用程序的发展,数据的导入和导出功能在许多项目中变得越来越重要。为用户提供方便的数据导入和导出功能,不仅可以提高用户体验,还能提升系统的整体效率。本文将介绍如何使用Vue和Element-UI实现数据的导入和导出功能,并附上相应的代码示例。一、准备工作首先,我们需要在项目中引入Vu

数据导出功能在实际开发中是非常常见的需求,特别是在后台管理系统或者数据报表导出等场景中。本文将以Golang语言为例,分享数据导出功能的实现技巧,并给出具体的代码示例。1.环境准备在开始之前,确保已经安装好Golang环境,并且熟悉Golang的基本语法和操作。另外,为了实现数据导出功能,可能还需要使用第三方库,比如github.com/360EntSec

标题:利用Golang实现数据导出功能详解随着信息化程度的提升,很多企业和组织需要将存储在数据库中的数据导出到不同的格式中,以便进行数据分析、报表生成等用途。本文将介绍如何利用Golang编程语言实现数据导出功能,包括连接数据库、查询数据和导出数据到文件的详细步骤,并提供具体的代码示例。连接数据库首先,我们需要使用Golang中提供的数据库驱动程序,比如da

Vue和Excel完美结合:如何实现数据的批量导出在很多前端开发中,导出数据到Excel是一个常见的需求。而Vue作为一款流行的JavaScript框架,提供了很多方便的工具和方法来实现这个功能。本文将介绍如何利用Vue和Excel.js库,实现数据的批量导出功能。首先,我们需要安装Excel.js库。可以使用npm包管理器进行安装:npminstall


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
