hi
I have created a web user control I want to change the iframe' src value when the user click on the link but the problem is that I dont have access to iframe inside the page from web user control I think there is a way because my control is in the page they have some relation perhaps I like to find something like this :
public void On_WebUserControl_LinkButton_Click(object sender , EventArgument e)
{
HtmlControl iframe = (HtmlControl) MainPage.findcontrol("myFrameName");
iframe.attribute["src"] = mystringsrc;
}