如何在 td 中放置控件

发布于 2024-12-10 03:26:29 字数 763 浏览 0 评论 0原文

我尝试在一个 td 中设置两个控件。 1.使用面板。如下。

  <td style="display: inline;">
            <asp:Panel ID="pContainer" runat="server" Wrap="false">
                <telerik:RadTextBox ID="rtxtBookingID" runat="server"></telerik:RadTextBox>
                <asp:RequiredFieldValidator ID="rfvBookingID"
                    runat="server" ControlToValidate="rtxtBookingID" ErrorMessage="|Booking ID"
                    Display="Dynamic"></asp:RequiredFieldValidator>   
                <telerik:RadButton ID="rbtnOpen" runat="server" Text="Browse" OnClientClicked="openViewWindow()"/> 
            </asp:Panel>

        </td>

如何解决问题。 如果我使用两个 td 来放置两个控件。但 td 中的第一个控件将生成一个 div。那么两者的控制距离远吗?

I try to set two control in a td.
1. use a panel. as follow.

  <td style="display: inline;">
            <asp:Panel ID="pContainer" runat="server" Wrap="false">
                <telerik:RadTextBox ID="rtxtBookingID" runat="server"></telerik:RadTextBox>
                <asp:RequiredFieldValidator ID="rfvBookingID"
                    runat="server" ControlToValidate="rtxtBookingID" ErrorMessage="|Booking ID"
                    Display="Dynamic"></asp:RequiredFieldValidator>   
                <telerik:RadButton ID="rbtnOpen" runat="server" Text="Browse" OnClientClicked="openViewWindow()"/> 
            </asp:Panel>

        </td>

how to solve the problem.
if I use two td to place the two control . but the first control in the td will gernerate a div. so the two control distance is far?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的呼吸 2024-12-17 03:26:29

只要它有效并且你得到了好的行为,你就可以了,对于布局问题你应该使用 css。您在页面上放置控件的方式还取决于整体页面设计和结构,请记住,不再提倡使用表格来控制布局,您应该尽可能使用 div 和 css...再次取决于整个页面设计当然。

As long as it works and you get ok behaviour you are fine and for layout issues you should use css. The way you place the controls on the page also depends on overall page design and structure, keep in mind that usage of tables to control layout is not promoted anymore and you should use divs and css whenever possible... again depending on whole page design of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文