-1

我有一个名为 EmployeeInformation.aspx.cs 的用户控件类,其文本字段为 txtRegistrationNo

 public partial class EmployeeInformation : System.Web.UI.UserControl
  {
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    public string TextRegistrationNo
    {
        get 
        {
           return txtRegistrationNo.Text;                
        }
    }

}

现在在另一个名为 SeparationInfo.aspx.cs 的类中,我如何访问 txtRegistrationNo 字段?

4

2 回答 2

0

您必须通过自定义控件的对象访问它,假设实例EmployeeInformationEmployeeInformation1

string TextRegistrationNo = EmployeeInformation1.TextRegistrationNo;
于 2013-02-13T06:42:53.277 回答
0
EmployeeInformation  objEmployeeInfo = new EmployeeInformation();
string temp = objEmployeeInfo.TextRegistrationNo;
于 2013-02-13T06:47:58.847 回答