1

ユーザーがリンクgridviewhyperlinkクリックすると、特定の行の詳細が個々のラベルを使用して表示される別のページに移動します。labelsテキストが長すぎるため、これらのラベルの1つは複数行にする必要があります...

それを取得する方法を教えてください。

ラベルの 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>
4

1 に答える 1

1

これを試して....

<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>

ラベルの width プロパティを設定すると、すべてのラベルに同じフォント名を指定しない限り、テキストが複数行になり、フォント サイズは同じままになります。

于 2013-07-03T11:32:30.427 に答える