0
我有一個從DropDownList繼承的自定義服務器控件。回發時,物品丟失。它看起來像這樣:自定義DropDownList服務器控件回發丟失項目
public class MyClientSelectList : DropDownList
{
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
// design mode hack to let visual studio display in design mode
if (!DesignMode)
{
if (!Page.IsPostBack)
{
this.Items.Add(new ListItem("Select an item..."));
// add more items from db
}
}
}
}
我檢查EnablePostBack = true。我在託管此自定義服務器控件的頁面的頁面加載中選擇一個選定的值。
爲什麼物品在回發中丟失?
向我們顯示您的標記... – IrishChieftain