如何从HTML表格中将数据添加到数据库中?
我的表是这样的:
html += "<table>";
html += "<tr><th>" + "A" + "</th><th>" + "B" + "</th><th>" + "C" + </th></tr>";
html += "<tr><td>" + "0" + "</td><td>" + "1" + "</td><td>" + "2" + </td></tr>";
html += "</table>";
我从服务器端调用HTML。
答案 0 :(得分:1)
如果你喜欢纯HTML,你可以使用像Knockout.js这样的JavaScript框架。 Knockout.js允许您使用JavaScript View Models将数据注入HTML。可以在视图模型中为按钮分配按钮。 JavaScript函数可以执行AJAX帖子来调用服务器端的控制器操作方法 - 这将把数据插入到数据库中。
有关淘汰赛的更多信息,请查看http://knockoutjs.com
答案 1 :(得分:0)
使用System.Text.RegularExpressions(Regex)搜索模式以替换表标记:
将<tr><th>
和<tr><td>
替换为空白
替换</th></tr>
和</td></tr>
,^^~~~~~~~~~~^^
表示结束。
将</td><td>
替换为||^^^^^^^^^||
表示分隔符
string html = // your html table goes here
string[] lines = html.Split(new string[] { "^^~~~~~~~~~~^^" }, StringSplitOptions.None);
// now your html table is divided into lines, which means rows
// lines[0] = // the header
// lines[1] = // row 1
// lines[2] = // row 2
// lines[3] = // row 3
// ...
// ...
// line 1 is the header/column name
string[] columns = lines[0].Split(new string[] { "||^^^^^^^^^||" }, StringSplitOptions.None);
// columns[0] = // 1st column name
// columns[1] = // 2nd column name
// columns[2] = // 3rd column name
// ...
// ...
for (int i = 1; i < lines.Length; i++)
{
string[] data = lines[i].Split(new string[] { "||^^^^^^^^^||" }, StringSplitOptions.None);
// data[0] = // 1st data
// data[1] = // 2nd data
// data[2] = // 3rd data
// ...
// ...
}