详细信息视图中的 FindControl 不起作用?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的
数据绑定事件
中,您需要注意您的DetailsView模式
In your
databound event
, you need to take care yourDetailsView Mode
我遇到了同样的问题,穆罕默德·阿赫塔尔的回答对我没有帮助。将详细信息视图的默认模式从“编辑”更改为“插入”后,问题得到解决。
我还建议使用 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.