I used AppendBoundItem in dropdown -but it keeps on adding extra list of data everytime I click
does any one have any idea how to restrict it.
thanks here's the code:
Code:<asp:ObjectDataSource ID="SrcCty" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="stateTableAdapters.CityTableAdapter" > <SelectParameters> <asp:ControlParameter ControlID="ddlSt" Name="MyState" PropertyName="SelectedValue" Type="String" DefaultValue="null" /> <asp:ControlParameter ControlID="RBl1" Name="mytype" PropertyName="SelectedValue" Type="String" /> <asp:ControlParameter ControlID="ddlyr" Name="FromYear" PropertyName="SelectedValue" Type="Decimal" /> <asp:ControlParameter ControlID="ddlTo" Name="ToYear" PropertyName="SelectedValue" Type="Decimal" /> </SelectParameters> </asp:ObjectDataSource> CITY: <asp:DropDownList ID="ddlCity" runat="server" DataSourceID="SrcCty" DataTextField="CITY" DataValueField="STATE_COUNTRY_CODE" OnInit="ddlcity_Init" AppendDataBoundItems="true"> <asp:ListItem Text="" Value="0" Enabled="false"></asp:ListItem> </asp:DropDownList>




Reply With Quote
