以下是引用islet在2006-2-24 12:59:00的发言:
this.TxtUserName.Text=UserName
UserName还没有值怎么给别人赋值
public string UserName
{
set
{
this.TxtUserName.Text=
value; //这里到底要怎么理解~~
}
get
{
return this.TxtUserName.Text;
}
}
用户控件是在其他页面里面的:取得用户控件文本框的值:
string UserName=((testControl)this.FindControl("mytc")).
UserName;
蓝色的部分是前面定义的public string UserName
this.TxtUserName.Text=
value; //这里到底要怎么理解~~,这样写有什么作用,我真的看不出来!!