我正在尝试从ButtonField(Databound)访问文本,但是如果将其称为Tablecell,我将无法获得文本。我该怎么做才能获得文字?

标记:

<asp:GridView ID="gvClass" runat="server" CssClass="grid" HeaderStyle-Font-Bold="true" Width="100%" OnSelectedIndexChanged="gvClass_SelectedIndexChanged" DataKeyNames="ClassID" AutoGenerateColumns="False" OnPageIndexChanging="gvClass_PageIndexChanging">
    <HeaderStyle Font-Bold="True" />
    <Columns>
        <asp:ButtonField DataTextField="ClassID" HeaderText="Class ID" CommandName="Select" />
        <asp:BoundField DataField="CourseName" HeaderText="Course Name" />
        <asp:BoundField DataField="WarehouseName" DataFormatString="Warehouse" HeaderText="Warehouse" />
        <asp:BoundField DataField="TrainerNames" HeaderText="Trainer(s)" />
        <asp:BoundField DataField="StartTime" HeaderText="Start Time" />
        <asp:BoundField DataField="Duration" HeaderText="Duration" />
        <asp:BoundField DataField="Course Category" HeaderText="Course Category" />
        <asp:BoundField DataField="Comment" HeaderText="Comment" />
    </Columns>
    <EmptyDataTemplate>
        <span class="italic grey">No Record Found</span>
    </EmptyDataTemplate>
</asp:GridView>

代码范围:

foreach (GridViewRow gvr in gvClass.Rows)
{
    foreach (TableCell tc in gvr.Cells)
    {
        stringToAppend = tc.Text;
        sb.Append(PRTL_UtilityPackage.FormatHtmlCharacters(stringToAppend) + " \t");
    }
    sb.Append("\\n");
}

foreach(gvr.cells中的Tablecell TC)在看纽扣时提出了一个空字符串。

有帮助吗?

解决方案

您仍然可以使用Tablecell方法:

protected void myGridView_DataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        // You may have to play with the index of the control
        // I have found that often a GridView will place a 
        // Literal control as Control[0] and the LinkButton
        // as Control[1]. Once you find the index, it won't
        // change.
        LinkButton btn = (LinkButton)e.Row.Cells[0].Controls[1];
        string text = btn.Text;
    }
}

其他提示

Dim lbtn As Button = DirectCast(gwvFileList.Rows(e.CommandArgument).Cells(1).Controls(0), Button)
Dim sName As String = lbtn.Text

例子: http://www.editingmate.com

在ButtonField中,单元格内部还有另一个控件,您需要获取文本:

Control control = gvr.Cells[0].Controls[0];
string text = string.Empty;
if (((ButtonField)gvClass.Columns[0]).ButtonType ==
    ButtonType.Link)
{
    LinkButton btn = control as LinkButton;
    text = btn.Text;
}
else
{
    Button btn = control as Button;
    text = btn.Text;
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top