2

尊敬的专家,我在名为 Uc1.axcs 的用户控件上有一个属性命名为

   public string ExamApp1
    {
        get { return txtExamAppeared1.Text; }
    }

我已经习惯了另一个用户控件 uc2.axcs

然后在我在页面 test.aspx 中使用了 uc2.axcs 用户控件之后,我的问题是我想在页面 test.aspx 中使用 ExamApp1,如果没有 Find Control 属性,我怎么能这样做是他们重新调整 Uc1 的任何方法来自 uc2 的用户控件通过属性,并通过该属性使用了 ExamApp1 属性

4

1 回答 1

1

您应该能够通过以下方法公开它uc2

public string GetExamApp1()
{
    return uc1Instance.ExamApp1;
}

uc1Instance控件中用于uc1控件实例的 id在哪里uc2

于 2012-11-22T14:31:37.037 回答