在用户控件中有自定义属性a,和一个dropdownlist控件,下面是a的定义
string _a;
public string a
{
   set{this._a=dropdownlist1.selectdItem.Value;}
   get{retrun _a;}
}
我想从用户控件里想把值取出来放到界面上textbox里,但是没有值