0

在我的应用程序中,我有一个 gridview,其中一个 gridview 的列中有一个超链接字段。超链接字段的文本很少或很多字。我想限制该列中显示的字符数。

例如:如果超链接内的文字是:“大家好,我今天有一个问题要问你”

我希望 gridview 列上的结果是:“大家好,我有……”

当用户点击整条消息时,他们将被重定向到显示整条消息的页面。

我的 Gridview 看起来像这样:

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="SerialNumber"
                    OnRowDataBound="GridView1_RowDataBound" 
                    Width="100%"
                    ShowFooter="false"
                    CellPadding="3"
                    CellSpacing="0"
                    EnableViewState="false"
                    AllowPaging="true"
                    PageSize="28"
                    AutoPostBack="true">


                    <Columns>
                         <asp:BoundField DataField="SrNumber" HeaderText="SrNumber" SortExpression="SrNumber" />
                          <asp:BoundField DataField="DateAdded" HeaderText="Created on" SortExpression="DateAdded" />
                          <asp:HyperLinkField DataNavigateUrlFields="SSrNumber" DataNavigateUrlFormatString="showdetail.aspx?SrNumber={0}" DataTextField="text_Det" HeaderText="text_Det" />
                         <asp:BoundField DataField="DateModified" HeaderText="Last Modified" SortExpression="DateModified" />
                        <asp:BoundField DataField="CreatedBy" HeaderText="CreatedBy" SortExpression="CreatedBy" />


                    </Columns>
                </asp:GridView>

我的 Gridview1_RowDataBound 看起来像:

 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
          if (e.Row.RowIndex < 0)
            return;

        int _myColumnIndex = 2;   // Substitute your value here

        string text = e.Row.Cells[_myColumnIndex].Text;

        if (text.Length > 10)
        {
            e.Row.Cells[_myColumnIndex].Text = text.Substring(0, 10);
        }
    }

问题是:除了超链接字段之外,所有其他列的代码都可以正常工作。对于 Hyperlinkfiled,它没有获取任何数据。字符串文本即将为空。请帮助!

谢谢你。

4

1 回答 1

0

我相信您的问题是您实际上并没有使用string text = e.Row.Cells[_myColumnIndex].Text;语法访问超链接对象本身。

试试这个:

HyperLink myLink = (HyperLink)e.Row.Cells[2].Controls[0];
string text = myLink.Text;
if (text.Length > 10)
{
    myLink.Text = text.Substring(0, 10);
}
于 2013-07-24T16:36:01.797 回答