HI,
thnx for your reply for the prvious post, i had one more query. The thing i am selecting mutiple items in a drop down, and i need to take all the selected items and need to pass it to a query.. but after selecting the one time the postback is not happening..i'll send my code to you,please go through that and send me reply
.aspx
<ig:WebDropDown ID="DD_PropZone" runat="server" EnableDropDownAsChild="false" EnablePaging="false"
width
="150px"
=".igdd_ListItem"><ClientEvents Initialize="initDropDown" />
>
.cs page
protected
e)
;
i = 0; i < DD_PropZone.SelectedItems.Count; i++)
{
(i == 0)
m =
else
m +=
}
)
sSqlQuery =
(sSqlQuery, Conn);
();
sda91.Fill(ds91);
dd_Locality.Items.Clear();
dd_Locality.DataSource = ds91.Tables[0];
dd_Locality.DataValueField =
dd_Locality.DataTextField =
dd_Locality.DataBind();
dd_Locality.Items.Insert(0,
);
BindPageLocality();
ModalPopupEx_AdSearch.Show();
plzz reply me quickly
Hi,
I am not sure if i understand the issue correctly, but - it sounds more like a performance issue to me. I suggest to remove the AutoPostBack=True setting, then use AutoPostBackFlag for SelectionChanged=On, and keep AutoFiltering=Server or AutoFiltering=Off. This, combined with using the latest service release for the product, should make all of the performance issues go away :) - I hope so.
Let me know if it helps,
Angel