2010年4月28日 星期三

C# UserControl 動態產生並傳值

Control customerInfoCard = Page.LoadControl("CustomerInfoCard.ascx");

customerInfoCard.GetType().GetProperty("CustomerID").SetValue(customerInfoCard, ”..." , null);}
User Control 是這樣子:
public string CustomerID
{
set
{
this._customerID = value;
...
}
}

沒有留言:

張貼留言