How to call master page method in content page but the content page is not inheritted from the master page. what i have to do to call the master page method in content page
this is my Operation master page method
public void RedirectPage(string url)
{
ifrmMstr.Attributes.Add("src", url);
}
And this is my content page and i am calling the function like this in the page load
Operation master = new Operation(); master.rpage("../Default.aspx");