﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebCombo - Load On demand query  using in child page.</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Load-On-demand-query-using-in-child-page/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Load On demand query  using in child page.</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Load-On-demand-query-using-in-child-page/</link><pubDate>Fri, 13 Nov 2009 08:29:36 GMT</pubDate><dc:creator>shantakumari</dc:creator><description>&lt;p&gt;Hi , thank you for the feed back. this is fine now its working :)&lt;/p&gt;</description></item><item><title>Load On demand query  using in child page.</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Load-On-demand-query-using-in-child-page/</link><pubDate>Thu, 12 Nov 2009 01:53:29 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Could you let me know what child page did you mean? Also, the way you binded WebCombo is not correct. You can just use e.DataSource=ds.Tables[0]; in InitializeDataSource event.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Load On demand query  using in child page.</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Load-On-demand-query-using-in-child-page/</link><pubDate>Thu, 12 Nov 2009 01:23:29 GMT</pubDate><dc:creator>shantakumari</dc:creator><description>&lt;p&gt;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. &lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;span style="font-size: 13px"&gt;&lt;/span&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;protected&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;void&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; WebCombo1_InitializeDataSource(&lt;/span&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;object&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; sender, ISNet.WebUI.WebCombo.&lt;/span&gt;&lt;span style="font-size: 13px; color: #2b91af"&gt;&lt;span style="font-size: 13px; color: #2b91af"&gt;DataSourceEventArgs&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e) &lt;p&gt;{&lt;/p&gt;&lt;/span&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;if&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; (IsPostBack) &lt;p&gt;{&lt;/p&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;&lt;/span&gt;&lt;span style="font-size: 13px; color: #008000"&gt;&lt;span style="font-size: 13px; color: #008000"&gt;&amp;nbsp; 
&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;&lt;p&gt;ds = usermaanger.GetUserList(2, e.QueryText);&lt;/p&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;&lt;/span&gt;&lt;span style="font-size: 13px; color: #008000"&gt;&lt;span style="font-size: 13px; color: #008000"&gt;&amp;nbsp; 
&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;&lt;p&gt;WebCombo1.DataSource = ds.Tables[0];&lt;/p&gt;&lt;p&gt;WebCombo1.DataBind();&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;/span&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;&lt;span style="font-size: 13px; color: #0000ff"&gt;else 
&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;WebCombo1.DataSource = ds.Tables[0];&lt;/p&gt;&lt;p&gt;WebCombo1.DataBind();&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;/span&gt;
&lt;p&gt;&lt;span style="font-size: 13px; color: #008000"&gt;&lt;span style="font-size: 13px; color: #008000"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size: 13px"&gt;}&lt;/span&gt; 

&lt;p&gt;&lt;span style="font-size: 13px"&gt;&lt;/span&gt; &lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 13px"&gt;waiting for response &lt;/span&gt;&lt;/p&gt;</description></item></channel></rss>