Asp.net sets the GridView adaptive column width without deformation, and the gridview column width

Source: Internet
Author: User

Asp.net sets the GridView adaptive column width without deformation, and the gridview column width

Because the number of columns of the dynamically bound GridView is not fixed, and there are too many columns, setting the fixed width of the GridView cannot meet the requirements. To solve this problem, we have sorted out two methods to achieve the effect of self-adapting the column width without deformation in the GridView.

// Set protected void gvObjectList_RowDataBound (object sender, GridViewRowEventArgs e) {if (e. row. rowType = DataControlRowType. dataRow | e. row. rowType = DataControlRowType. header) {// keep the column unchanged for (int I = 0; I <e. row. cells. count; I ++) {// Method 1: e. row. cells [I]. text = "& nbsp;" + e. row. cells [I]. text + "& nbsp;"; e. row. cells [I]. wrap = false; // Method 2: // e. row. cells [I]. text = "<nobr> & nbsp;" + e. row. cells [I]. text + "& nbsp; </nobr> ";}}}

Code Description:
Method 1: Set the automatic line feed attribute of cell to false.
Method 2: Use html tags to avoid line breaks. It is a space that allows a certain distance between the grid lines and the content inside to keep the appearance.

If you are interested, start it and see how it works.

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.