Доступ к полю метки GridView из-за кода - PullRequest
2 голосов
/ 17 июня 2011

У меня есть gridview, и я пытаюсь получить текстовое значение метки в textview, где код:

<asp:TemplateField HeaderText="someText" SortExpression="someExpression">
    <ItemTemplate>
        <asp:Label ID="someLabel" runat="server" Text='<%# Bind("someField") %>'></asp:Label>
    </ItemTemplate>
</asp:TemplateField>

Я хочу иметь возможность получить текстовое значение"someLabel" из selectedRow в виде строки в моем коде.

1 Ответ

1 голос
/ 17 июня 2011
Label someLabel = selectedRow.FindControl("someLabel") as Label;

EDIT:

    private static Control FindControlRecursive(Control parent, string id)
    {
        if (parent.ID== id)
        {
            return parent;
        }

        return (from Control ctl in parent.Controls select FindControlRecursive(ctl, id))
            .FirstOrDefault(objCtl => objCtl != null);
    }

и

Label someLabel = FindControlRecursive(GridView.SelectedRow, "someLabel") as Label;

РЕДАКТИРОВАТЬ 2:

private void imageButton_Click(object sender, EventArgs e)
{
     Label someLabel = (sender as Control).Parent.FindControl("someLabel") as Label;
}
...