详细信息视图中的 FindControl 不起作用?

发布于 2024-10-27 19:38:12 字数 323 浏览 5 评论 0原文

我有一个 Gridview,当单击编辑按钮时,将使用详细信息视图显示该行的详细信息。

在显示时,我需要在detailsView中找到一个控件,然后将其与数据源绑定。

首先,我不确定要使用的事件,但使用了DetailsView1_DataBound。 来查找控件

var control=(ControlType)DetailsView1.Findcontrol("ID");

但是,如果我必须使用总是返回 null 。可能是我没有使用正确的事件,并且当时找不到控件。有关要使用的事件的任何想法以及正确的代码吗?

谢谢

I have a Gridview and when the edit button is clicked the details of that row is displayed using a detailsview.

While displaying, I need to find a control in detailsView, and then bind it with a Datasource.

First of All I'm not sure about the event to be used but have used DetailsView1_DataBound. However, if I have to find the control using

var control=(ControlType)DetailsView1.Findcontrol("ID");

Always returns null. May be I am not using the right event, and it couldn't find the control at that point. Any ideas about the event to be used, and the right code please?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奢望 2024-11-03 19:38:12

在您的数据绑定事件中,您需要注意您的DetailsView模式

 if (DetailsView1.CurrentMode == DetailsViewMode.Edit)
    {
      //Put here if you want to find control of your Edit Mode
      var control=(ControlType)DetailsView1.Findcontrol("EditTemplateControlID");
    }

 if (DetailsView1.CurrentMode == DetailsViewMode.Insert)
    {
        //Put here if you want to find control of your Insert Mode
      var control=(ControlType)DetailsView1.Findcontrol("InsertTemplateControlID");
    }

In your databound event, you need to take care your DetailsView Mode

 if (DetailsView1.CurrentMode == DetailsViewMode.Edit)
    {
      //Put here if you want to find control of your Edit Mode
      var control=(ControlType)DetailsView1.Findcontrol("EditTemplateControlID");
    }

 if (DetailsView1.CurrentMode == DetailsViewMode.Insert)
    {
        //Put here if you want to find control of your Insert Mode
      var control=(ControlType)DetailsView1.Findcontrol("InsertTemplateControlID");
    }
胡渣熟男 2024-11-03 19:38:12

我遇到了同样的问题,穆罕默德·阿赫塔尔的回答对我没有帮助。将详细信息视图的默认模式从“编辑”更改为“插入”后,问题得到解决。

我还建议使用 ItemCreated 事件而不是 DataBound 事件。我经常使用它在详细信息视图的字段中设置默认值。

I had the same problem and the answer of Muhammad Akhtar did not help me. The problem was solved after changing the default mode of the DetailsView from 'edit' to 'insert'.

I would also recommend the ItemCreated event instead of the DataBound event. I use it often for setting a default value in a field of the DetailsView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文