admin 管理员组

文章数量: 887032


2024年1月5日发(作者:盘组词)

服务器端实现JS的Excel中导入导出

SpreadJS基于HTML5和jQuery的技术,通过画布呈现在客户端,类似Excel中的风格外观和用户界面行为为最终用户提供了丰富的,可交互的用户体验。本文主要介绍SpreadJS在服务器端导入导出Excel中的使用方法。

工具/原料

表格控件:SpreadJS

安装包大小:37M;适用平台:WINDOWS

方法/步骤

1.在aspx页面内添加导入导出代码

protected void ImportBtn_Click(object sender, EventArgs e)

{

string uriString = "localhost/ExcelIO/xsapi/import";

ent myWebClient = new

ent();

string fileName = MapPath("");

byte[] responseArray = File(uriString,

"POST", fileName);

string spreadjsJsonResult =

ing(responseArray);

= spreadjsJsonResult;

}

protected void ExportBtn_Click(object sender, EventArgs e)

{

using (var stream = (MapPath("")))

{

WebClient request = new WebClient();

lueCollection

formData = new

lueCollection();

formData["type"] = "application/json";

formData["data"] = ;

byte[] result =

Values("localhost/ExcelIO/xsapi/export",

"POST", formData);

(result, 0, );

();

}

= "";

}

2.前台JS脚本

3.页面文件

1px solid gray">

Text="Import Excel" OnClick="ImportBtn_Click" />

Text="Export Excel" OnClick="ExportBtn_Click" />

效果展示


本文标签: 导出 导入 呈现