0

我有一个模板字段,在模板字段内有一个文本框和过滤的文本框扩展器。我需要在c# 代码隐藏中将filteredtextboxextender 的ValidChars 属性从“123”更改为“abc”。模板字段位于 GridView 内。我在 aspx 页面中使用了以下代码。

<asp:GridView ID="grdEducation" runat="server" AllowSorting="True" AutoGenerateColumns="False"
                        AllowPaging="false" CellPadding="4" GridLines="Vertical" OnRowDeleting="grdEducation_RowDeleting"
                        OnRowDataBound="grdEducation_RowDataBound" OnRowUpdating="grdEducation_RowUpdating" ShowFooter="false" ShowHeader="true">
                        <HeaderStyle CssClass="grid-header-style" />
                        <Columns>
                        <asp:TemplateField HeaderStyle-CssClass="grid-label-small" >`   

    <ItemTemplate>
                                    <table>
                                        <tr>
                                            <td width='90%'>
                                                <table>
                                                <td width='60%'>
                                                        <asp:TextBox ID="textbox1" Width="100px" runat="server"
                                                            ToolTip="Provide text" MaxLength="11"></asp:TextBox>
                                                        <ajaxtoolkit:FilteredTextBoxExtender ID="filter" runat="server" TargetControlID="textbox1"
                                                            ValidChars="123" />

                                                    </td>
                                                </table>
    </td>
                                        </tr>
                                    </table>
                                </ItemTemplate>
                        </asp:TemplateField>
                        </Columns>
</asp:GridView>

有没有可能像这样更改过滤文本框扩展器属性?

谢谢..

4

1 回答 1

0

像下面这样注册RowBoundData事件。

protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        YourControlType Conrol = (YourControlType)e.Row.FindControl("ControlID");
        //Set the property here
    }
}

您也可以类似地更改Row_Command事件中的控件属性

于 2012-04-12T19:06:33.630 回答