开发者

Finding control on aspx

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("rad开发者_C百科Term");

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.


First, you have to find the promote.ascx control on the page, so:

Control promote = (Control)this.Page.FindControl("WhateverYouCalledPromote");

Now that you have found the control, you can search for the control that you want:

RadComboBox tl = (RadComboBox)promote.FindControl("radTerm");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜