ASP.NET Webform - 如何将 FormView 和 GridView 并排放置

ASP.NET Webform - How to place FormView and GridView next to each other

在我的网络表单中,我有一个 gridview 和一个 formview。 formview 始终出现在 gridview 下。如何将窗体视图移动到网格视图的右侧?

GridView 和 FormView 呈现为 tables,因此一种方法是使用一个 warper table 将它们并排放置。当然有人会说 tables 不是现代设计,最好使用 div...好吧,这只是一个快速的解决方案。

<table>
    <tr>
        <td>
            <asp:GridView></asp:GridView>    
        </td>
        <td>
            <asp:FormView></asp:FormView>
        </td>
    </tr>
</table>