The GridView intercepts characters that exceed a certain width.

Source: Internet
Author: User

Method 1: css processing:

A
{
Width: 80px;
Overflow: hidden;/* do not write it at the end */
White-space: nowrap;
-O-text-overflow: ellipsis;
Text-overflow: ellipsis;
}
A: hover
{
Text-decoration: none;
Color: #000;
}

<A href = "#" style = "display: block; text-decoration: none; color: #000;" title = '<% # Eval ("GlobalCode ") %> '> <% # Eval ("GlobalCode") %> </a>

Method 2: server-side truncation

In GridViewTicket_RowDataBound and other events:

String Destination Address = dtHotel. Rows [row. RowIndex] ["Destination _address"]. ToString (). Trim ();
If (response address. Length> 9)
{
(Label) row. FindControl ("labelemediaddress"). Text = your address. Substring (0, 8) + "...";
(Label) row. FindControl ("labelemediaddress"). ToolTip = your address;

}
Else
{
(Label) row. FindControl ("labelemediaddress"). Text = your address;
(Label) row. FindControl ("labelemediaddress"). ToolTip = your address;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.