使用.net Webcontrols.table

时间:2016-02-03 18:39:11

标签: html css .net asp.net-mvc html5

根据这个网页: http://www.html5-tutorials.org/tables/changing-column-width/

HTML5表中有col标签......

<table width="100%">
        <col style="width:40%">
        <col style="width:30%">
        <col style="width:30%">
        <tbody>
          <tr>
              <th>Fruits</th>
          </tr>
        </tbody>
</table>

....

...但我无法弄清楚如何通过逐步创建的表访问它们。

例如,我可以像这样创建表:

Dim Table As New WebControls.Table
Dim Row As New WebControls.TableRow
Dim Cell As New WebControls.TableCell
Cell.Text = "Fruits"
Row.Cells.Add(Cell)
Table.Rows.Add(Row)

但是如何获取对col标签的访问权限以便我可以向其添加样式信息?

https://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.table(v=vs.110).aspx

甚至可以使用.net?

(语言不敬 - 我可以翻译)

1 个答案:

答案 0 :(得分:1)

也许这个?

DataGridViewColumn getcol;

foreach(DataGridViewColumn c in DataGridView1.Column)
{
    if(c.Tag as String == "10")
        getcol = c;
}

像这样使用:

DataGridView1.Rows[1].Cells[getcol.Name].Value = 100;

原始资料来源: DataGridView Get ColumnName From Column Tag