定位.NET控件

时间:2012-04-16 06:19:55

标签: asp.net .net css positioning asp.net-controls

我希望我的标签“The Top Row”位于我的gridview的顶行附近,正如我在下面用黄色表示的那样,

enter image description here

我尝试了绝对定位标签,但在显示时,它有问题。做这个的最好方式是什么 ? (向右浮动的工作就像左边的那个没用,而且我试过了显示块但是也找不到方法)

这是一个基本问题,但无法找到解决方案

3 个答案:

答案 0 :(得分:4)

您只需向float: left<asp:GridView />添加<asp:Label />

HTML标记:

<asp:GridView ID="GridView1" runat="server" CellPadding="10" 
    ForeColor="#333333" style="float: left;" AutoGenerateColumns="False">
    <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
    <Columns>
        <asp:ButtonField ButtonType="Button" Text="Info File" />
        <asp:ButtonField ButtonType="Button" Text="Get Contact" />
        <asp:BoundField DataField="Column0" HeaderText="Column0" />
        <asp:BoundField DataField="Column1" HeaderText="Column1" />
        <asp:BoundField DataField="Column2" HeaderText="Column2" />
    </Columns>
    <EditRowStyle BackColor="#999999" />
    <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
    <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
    <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
    <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
    <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
    <SortedAscendingCellStyle BackColor="#E9E7E2" />
    <SortedAscendingHeaderStyle BackColor="#506C8C" />
    <SortedDescendingCellStyle BackColor="#FFFDF8" />
    <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
<asp:Label ID="TopRowLabel" runat="server" style="float: left;" />

输出:

enter image description here

答案 1 :(得分:0)

也许您可以尝试添加样式float: left或类似于网格的东西?

还尝试使用display: block和其他值进行试验。

答案 2 :(得分:0)

尝试使用Jquery查找Header Row,并可能使用.Append(附加元素)。

如果标签/元素的值来自服务器,那么您可以在后面的代码中设置隐藏变量(runat =“server”),然后再次使用Jquery来设置标签的值(可能呈现为span)