c#怎么写文件啊 急啊 救命!!!!
namespace Corona.Web.HRM.Recruit
{
public partial class Recruit
{
protected global::System.Web.UI.WebControls.Label lblEmail;
protected global::System.Web.UI.WebControls.TextBox TxtNull;
protected global::System.Web.UI.WebControls.Label lblStart;
protected global::System.Web.UI.WebControls.TextBox ;
protected global::System.Web.UI.WebControls.Label lblEnd;
}
}
比如说这样一个例子 但我想把 lblEail.TxtNull 那些 不是写死的 我想在外面传进来 该怎么写啊 新手啊 刚学
------解决方案--------------------这样就行了
public string PublicEmail
{
get
{
return lblEmail;
}
set
{
lblEmail = value;
}
}