c# ASP中不同的表类型.净webform

本文关键字:类型 webform ASP | 更新日期: 2023-09-27 18:02:58

我想添加一个表到我的web表单。当我尝试将表单元格的属性设置为在解决方案资源管理器中显示时,我没有看到我的书本练习中提到的Valign Property。我看到了以"咏叹调"开头的属性。我用错表格类型了吗?

请指路

c# ASP中不同的表类型.净webform

align是无效的HTML5,它已被弃用。使用CSS,并使用

vertical-align:alignment (top, bottom, middle)

HTML方式:

<table>
   <tr>
      <td style="vertical-align:middle;">Vertically centered text</td>
      <td style="vertical-align:top;">Vertically top aligned text</td>
   </tr>
</table>

ASP。. NET WebForms方式:

<asp:Table id="myTable" runat="server">
    <asp:TableRow>
        <asp:TableCell VerticalAlign="Middle">
            Vertically centered text
        </asp:TableCell>
        <asp:TableCell VerticalAlign="Top">
            Vertically top aligned text
        </asp:TableCell>
    </asp:TableRow>
</asp:Table>