从继承的类中读取文本框

时间:2018-09-11 21:48:32

标签: c# asp.net inheritance webforms

我在C#中非常陌生,现在遇到一些问题,无法从基类中读取文本框值。

我的基类是

public partial class AccidentForm : System.Web.UI.Page
{...}

具有多个文本框。为了使代码可读,我创建了新类并尝试读取txtAccidentLocAddress.Text,如下所示:

public class ComMotorVehiAcc : AccidentForm
{
    public void readpanComMoterVehiAcc()
    {
        txtAccidentLocAddress_panComMoterVehiAcc_str = txtAccidentLocAddress.Text;
    }
}

但是它给了我空。我在这里错过了非常基本的概念。我需要getter setter来访问吗?还是我到底想念什么?在此先感谢!

0 个答案:

没有答案