在gridview的多行文字中显示标签值
本文关键字:显示 标签 文字 gridview | 更新日期: 2023-09-27 18:21:00
我得到了一个gridview
,它在一列中有hyperlink
,当用户单击链接时,他将被引导到另一个页面,在那里,特定行的详细信息将使用单独的标签显示。在那些labels
中,其中一个标签对我来说必须是多行的,因为文本太长。。。
请帮我拿。
标签的aspx页面
<asp:Label ID="LblDescription" runat="server"
Font-Bold="True" Font-Names="Verdana"
Font-Size="X-Small" ForeColor="#0061C1" Height="16px"
Width="97px" BorderColor="#0061C1"
BorderWidth="1px" BackColor="White"></asp:Label>
试试这个。。。。
<asp:Label ID="lblName" runat="server" Text="User1" Font-Bold="True" Font-Names="Verdana"></asp:Label>
<br />
<asp:Label ID="lblDescription" runat="server" Font-Bold="True" Font-Names="Verdana"
Width="300px" Text="I got one gridview which has hyperlink in one column, when the user clicks the link he will be directed to another page where the details of particular row will be displayed using individual labels. In those labels one of the label must be multilined for me because the text will be too long">
</asp:Label>
设置标签的宽度属性,将使文本多行,字体大小将保持不变,除非您为所有标签指定相同的字体名称