Load On demand query using in child page.

2 replies. Last post: November 13, 2009 8:29 AM by shanta kumari
Tags :
  • (None)
  • New Discussion
  • New Question
  • New Product Feedback

I have 2 lakh records that need to be loaded to webcombo so i used the on demand query concept but its not working in the child page.

when i am trying to use "Load on demand" query  concept in the initialize object here is the code- post back is happening always. always will get ispostback false and will never go inside that condition. can any one help me.

 

 

protected void WebCombo1_InitializeDataSource(object sender, ISNet.WebUI.WebCombo.DataSourceEventArgs e)

{

if (IsPostBack)

{

 

ds = usermaanger.GetUserList(2, e.QueryText);

 

WebCombo1.DataSource = ds.Tables[0];

WebCombo1.DataBind();

}

else

{

WebCombo1.DataSource = ds.Tables[0];

WebCombo1.DataBind();

}

}

 

waiting for response

All times are GMT -5. The time now is 2:24 AM.
Previous Next