我在一个转发器控件中有一个更新面板。同样,转发器位于具有runat='server'
属性的div内。哪个绑定领域如
名称 - 作为标签
地址 - 作为文本框
评论 - 作为文本框
我必须根据条件关注特定记录。如果名称是'John',我应该集中注意力并滚动到Repeater内的那条记录。我已经在转发器控件的ItemDataBound事件中写入了登录,其中包含代码片段 - < / p>
TextBox txtComments = (TextBox)e.Item.FindControl("txtComments");
txtComments.Focus();
请建议任何不适合我的解决方案。 谢谢!!
答案 0 :(得分:0)
在您的页面中使用此功能
Page.MaintainScrollPositionOnPostback = true;
将代码组合成
TextBox txtComments = (TextBox)e.Item.FindControl("txtComments");
txtComments.Focus();
Page.MaintainScrollPositionOnPostback = true;