国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

控制GridView中字段的長度,規(guī)范數(shù)據(jù)

2019-11-17 01:35:23
字體:
供稿:網(wǎng)友

控制GridView中字段的長度,規(guī)范數(shù)據(jù)

前臺:

 

       <asp:GridView ID="GridView1" runat="server" OnRowDataBound="GridView1_RowDataBound">            <Columns>                <asp:TemplateField>                    <HeaderTemplate>                        <input id="cb_head" type="checkbox" name="cb_head" onclick="SelectAll(this,<%=GridView1.ClientID %>);" />                    </HeaderTemplate>                    <ItemTemplate>                        <asp:CheckBox ID="ChkChild1" runat="server" />                    </ItemTemplate>                    <ItemStyle HorizontalAlign="Center" />                    <FooterStyle HorizontalAlign="Center" />                </asp:TemplateField>            </Columns>        </asp:GridView>

后臺:

    PRotected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)    {        //在RowDataBound事件中調(diào)下面的方法        int[] cellIndexs = new int[4];        this.setGridViewInfo(e,1, cellIndexs, 11);    }    #region    /// <summary>    /// 控制GridView中顯示字符串的長度 并 在ToolTip中顯示全部文本    /// </summary>    /// <param name="e">GridViewRowEventArgs e</param>    /// <param name="cellIndexs">GridView中顯示單元格的個數(shù)</param>    /// <param name="maxStrLength">要顯示的最大字符串長度</param>    private void setGridViewInfo(System.Web.UI.WebControls.GridViewRowEventArgs e,int stata_index, int[] cellIndexs, int maxStrLength)    {        string CellText = string.Empty;        //因為我的GridView前一列是CheckBox,所以i從1開始        for (int i = stata_index; i < cellIndexs.Length; i++)        {            CellText = e.Row.Cells[i].Text.Trim();            if (CellText.Length > maxStrLength)            {                e.Row.Cells[i].Text = CellText.Substring(0, maxStrLength - 1) + " <strong style='Color:blue' mce_style='Color:blue'> ... </strong>";                e.Row.Cells[i].ToolTip = CellText;            }        }    }    #endregion

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 绥中县| 凤庆县| 衢州市| 华阴市| 溧水县| 盐津县| 崇左市| 鹤峰县| 乌拉特中旗| 江西省| 赤峰市| 金塔县| 宜阳县| 兴义市| 南和县| 榕江县| 洪泽县| 抚州市| 永城市| 三穗县| 江阴市| 新民市| 水富县| 绩溪县| 福建省| 甘孜县| 鹿邑县| 比如县| 安庆市| 琼中| 金乡县| 左权县| 阜城县| 错那县| 陈巴尔虎旗| 张家口市| 敦煌市| 额济纳旗| 贵港市| 徐闻县| 临汾市|