62,268
社区成员
发帖
与我相关
我的任务
分享
public partial class WebUserControl1 : System.Web.UI.UserControl
{
private object _mydatasource;
public object Mydatasource
{
get { return _mydatasource; }
set { _mydatasource = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (_mydatasource != null)
{
DropDownList1.DataSource = Mydatasource;
DropDownList1.DataBind();
}
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
WebUserControl11.Mydatasource = new string[]{"asp.net","vb.net"};
}
}