今天在优化原来网站的代码,有不少收获,给同样是菜鸟的同志们分享下.
比如要添加txtName这个属性,在.ascx文件中的<script></script>标签中加入:
public string _txtName; public string txtName { get { return this.txtName; } set { _txtName = value; } }
之后_txtName的值就是txtName属性的值了.
今天在优化原来网站的代码,有不少收获,给同样是菜鸟的同志们分享下.
比如要添加txtName这个属性,在.ascx文件中的<script></script>标签中加入:
public string _txtName; public string txtName { get { return this.txtName; } set { _txtName = value; } }
之后_txtName的值就是txtName属性的值了.