0

我有一个绑定到数据库表的 gridview,但我必须使用的 css 是为 html:table 设计的。我想知道是否有一种简单的方法可以将 gridview 转换为 html 表格,以便我可以使用给定的样式表来显示它。

谢谢

这是我的合作伙伴为模型编写的 html 表的示例。我想模仿样式的应用方式。

<div class="content1">


 <table class="yep">
<thead>
    <tr>
      <th>Case #</th>
      <th>Unit #</th>
      <th>Date</th>
      <th>Type of Call</th>
      <th>Gender</th>
      <th>Age</th>
      <th>View PCR</th>
      <th><button class="btn">Create Incident</button></th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>123456788</td>
      <td>102935734</td>
      <td>07/28</td>
      <td>Critical Care</td>
      <td>Male</td>
      <td>25</td>
      <td><a class="btn em" href="table_view.html">View PCR</a></td>
      <td class="check"><input type="checkbox"></td>
    </tr>

这是我的网格视图:

       <asp:GridView ID="GridView1" runat="server" CssClass="yep" AutoGenerateColumns="False" DataKeyNames="Case #" DataSourceID="SqlDataSource1">
    <Columns>
        <asp:BoundField DataField="Case #" HeaderText="Case #" ReadOnly="True" SortExpression="Case #" />
        <asp:BoundField DataField="Unit #" HeaderText="Unit #" SortExpression="Unit #" />
        <asp:BoundField DataField="Date" HeaderText="Date" SortExpression="Date" />
        <asp:BoundField DataField="Type of Call" HeaderText="Type of Call" SortExpression="Type of Call" />
        <asp:BoundField DataField="Gender" HeaderText="Gender" SortExpression="Gender" />
        <asp:BoundField DataField="Age" HeaderText="Age" SortExpression="Age" />
        <asp:BoundField DataField="View PCR" HeaderText="View PCR" SortExpression="View PCR" />
        <asp:TemplateField HeaderText="Selection">
            <ItemTemplate>
                <asp:CheckBox ID="Selections" runat="server" OnCheckedChanged="CheckBox1_CheckedChanged" />
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>
4

1 回答 1

0

尝试这个:

<asp:TemplateField HeaderText="Selection">
    <ItemTemplate>
        <asp:Button ID="Selections" runat="server" OnClick="Selections_Click" CssClass="btn" />
    </ItemTemplate>
</asp:TemplateField>

注意:该CssClass属性会将btn类分配给呈现的输出。

于 2013-08-12T18:31:39.143 回答