0

这可能是我做错了的另一种情况。我责备自己。

但是我对 DetailsView 中 FindControl 的行为感到困惑,如下所示。

FindControl 一直有效,直到我从 DataControlFieldCollection 中删除了一个字段。如果重要的话,这是在 MasterPage 中。

我已经尝试移动删除 Page_Load、Page_PreRender 中的 DataControlField 以及 dvCategories 的 ModeChanged 和 ModeChanging 事件的代码。

我也试过从很多地方调用 dvCategories.Databind() 无济于事。

这是预期的行为,是否有解决方法?

protected void ldsCategories_OnInserting(object sender, LinqDataSourceInsertEventArgs e)
{
    //Here findcontrol works unless the commented code from the button event handler is fired.
    TextBox tb = (TextBox) dvCategories.FindControl("txtInsertParentId");
    string ParentName = tb.Text;

}

protected void btnNew_click(object sender, EventArgs e)
{
    dvCategories.ChangeMode(DetailsViewMode.Insert);
    //dvCategories.Fields.RemoveAt(3);

}

ASP 代码:

    <asp:DetailsView ID="dvCategories" runat="server" AutoGenerateEditButton="True" AutoGenerateInsertButton="True" DataSourceID="ldsCategories" AutoGenerateRows="False" DataKeyNames="CategoryId" DefaultMode="ReadOnly">
        <Fields>
            <asp:BoundField DataField="CategoryId" HeaderText="CategoryId" InsertVisible="False" ReadOnly="True" SortExpression="CategoryId" />
            <asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
            <asp:TemplateField HeaderText="Parent Name">
                <InsertItemTemplate>
                    <asp:TextBox ID="txtInsertParentId" runat="server"></asp:TextBox>
                </InsertItemTemplate>
            </asp:TemplateField>
            <asp:BoundField DataField="ContentPath" HeaderText="ContentPath" SortExpression="ContentPath" />
            <asp:BoundField DataField="DisplayUrl" HeaderText="DisplayUrl" SortExpression="DisplayUrl" />
            <asp:BoundField DataField="MetaDesc" HeaderText="MetaDesc" SortExpression="MetaDesc" />
        </Fields>    
</asp:DetailsView>

<asp:LinqDataSource ID="ldsCategories" runat="server" ContextTypeName="ProductsDataContext" TableName="Categories" EnableInsert="True" EnableUpdate="True" OnInserting="ldsCategories_OnInserting" EntityTypeName="" Where="CategoryId == @CategoryId &amp;&amp; Name == @Name" OnInserted="ldsCategories_OnInserted">
    <WhereParameters>        
        <asp:ControlParameter ControlID="txtCategory" Name="Name" PropertyName="Text" Type="String" DefaultValue="" />
    </WhereParameters>
    </asp:LinqDataSource>
4

1 回答 1

0

我真的是个假人。我不需要删除该字段,只需将其隐藏即可。

所以这有效:

dvCategories.Fields[3].Visible = false;

FindControl 也适用于这种技术。我仍然不知道为什么修改集合会破坏 findcontrol ......

于 2012-12-10T18:31:23.600 回答