Reputation: 11
In asp.net I enable the autopostback property in a dropdown list . whenever i select a list item of dropdown menu same list items added in to dropdown list this probles how can i solved?
Upvotes: 0
Views: 35
Reputation: 11703
Check for the Page.IsPostBack Property.
private void Page_Load()
{
if (!IsPostBack)
{
// load combo box
...
}
}
Upvotes: 1