控制GridView中字段的长度,规范数据_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 控制GridView中字段的长度,规范数据

控制GridView中字段的长度,规范数据

 2014/6/16 16:08:10  璇狼之风  程序员俱乐部  我要评论(0)
  • 摘要:前台: <asp:GridViewID="GridView1"runat="server"OnRowDataBound="GridView1_RowDataBound"><Columns><asp:TemplateField><HeaderTemplate><inputid="cb_head"type="checkbox"
  • 标签:view 数据

前台:

 

       <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事件中调下面的方法
        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中显示单元格的个数</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
上一篇: JNI调用第三方C++ dll 下一篇: 没有下一篇了!
发表评论
用户名: 匿名