ドロップダウンリストがあり、次のようにいくつかの項目を追加しました
<asp:DropDownList ID="ddlInsAuther" runat="server"
DataSourceID="ObjectDataSourceInsAuthers" DataTextField="AutherName"
DataValueField="AutherID">
<asp:ListItem Value="-1">No Authers</asp:ListItem>
</asp:DropDownList>
そしてデータソースで
<asp:ObjectDataSource ID="ObjectDataSourceInsAuthers" runat="server"
SelectMethod="GetAll" TypeName="MyProject.BusinessLayer.AuthersFactory">
</asp:ObjectDataSource>
ロードするとリストがクリアされ、新しいアイテムがロードされます。ページのロード時にカスタム バインダーを作成したくありません。データソースからバインドしている間、追加したアイテムをリストに維持するにはどうすればよいですか?