我使用从Excel文件中复制数据并将其粘贴到文本框中并运行jQuery来解析它来生成HTML表格。
为实现这一目标,我遵循了以下问题 - Copy/Paste from Excel to a web page
现在,下一个要求是我需要将此HTML表中的数据插入到数据库表中。
如何在ASP.NET Web表单中完成此操作?
答案 0 :(得分:1)
编写一个接受数据的ASP页面,解析',
and
tags into rows of values and then do a SQL
INSERT`语句。
但是为什么首先将它编码到',
and
`字段中?为什么不粘贴数据并将其提交给服务器,然后在服务器上进行解析?
var rows = data.split("\n");
for(var y in rows) {
var cells = rows[y].split("\t");
// call sql 'INSERT' supplying cell[0] ... cell[n]
// as the arguments values of the INSERT
}
}