3、,就得将TextBox的Text属性公开出来。这就是为用户控件添加简单属性。注意:我们这里指的是属性,而不是字段。而且,这个属性必须是Public的,才能在控件外访问到。添加属性如下:using System;namespace WebApplication1{ public partial class WebUserControl1 : System.Web.UI.UserControl {//这个就是简单属性 public string Text { ge
6、页中敲出Color属性时就会自动带出Red,Green,White三个可选值了。WebUserControl1.ascx控件的属性也变成如下:以上示例的全部源码如下:using System;namespace WebApplication1{ public partial class WebUserControl1 : System.Web.UI.UserControl { public enum TextColor { Red, Gr
7、een, White } //这是简单属性 public string Text { get { return this.TextBox1.Text; } set { this.TextBox1.Text = value; } } //这是枚举属性 public TextColor Color { get;