如何从asp.net中的html表中将数据插入数据库

时间:2013-01-22 07:21:38

标签: c# asp.net html

如何从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。

2 个答案:

答案 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 
    // ...  
    // ...
}