寻找aspx上的控件
我有一个 Promotion.aspx 页面,其中有一些 radcombobox; radTerm 和 radOldYear。 Promotion.aspx 还有一个 radgrid,可通过 WebUserControl、promote.ascx 进行更新。此 Web 用户控件有几个 radcomboboxes、radName 和 radNewyr。
在promote.ascx.cs中,我希望能够找到promote.aspx上的comoboxes。尝试使用:
RadComboBox tl = (RadComboBox)this.Page.FindControl("radTerm");
徒劳!有人请帮我找到主页上的控件。我通过在 radgrid 中加载的 webusercontrol 来调用它们。
I have a Promote.aspx page which has a few radcomboboxes; radTerm and radOldYear. Promote.aspx also has a radgrid which is updatable by a WebUserControl, promote.ascx. This Web user control has a few radcomboboxes, radName and radNewyr.
In the promote.ascx.cs, i want to be able to find the comoboxes which are on the promote.aspx. Tried using:
RadComboBox tl = (RadComboBox)this.Page.FindControl("radTerm");
in vain! Someone please help me find the controls on the main page. i am calling them thru the webusercontrol that i load in the radgrid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须在页面上找到promote.ascx控件,因此:
现在您已经找到了该控件,您可以搜索您想要的控件:
First, you have to find the promote.ascx control on the page, so:
Now that you have found the control, you can search for the control that you want: