Wednesday 16 May 2012

Find Control in Page of Master Page

   

 ContentPlaceHolder mpContentPlaceHolder;
        TextBox mpTextBox;
// MainContent is content place holder name
        mpContentPlaceHolder =
            (ContentPlaceHolder)Master.FindControl("MainContent");
        if (mpContentPlaceHolder != null)
        {
            string str = "txtFirstName";
            TextBox txt = (TextBox)this.Master.FindControl(str);
            Response.Write(txtFirstName.Text);
        }

No comments:

Post a Comment

What should you required to learn machine learning

  To learn machine learning, you will need to acquire a combination of technical skills and domain knowledge. Here are some of the things yo...