I have 2 datasets. 1 is assigned to dropdown and the other is assigned to repeater. If we select value from drop down, then values in repeater should be populated according to that value.
Initially I have assigned dataview to dropdown:
DataView dw = DataAccess.GetFirmID().Tables[0].DefaultView;
distinctDataTable = dw.ToTable(true, "FirmID");
ddlFirms.DataSource = distinctDataTable;
ddlFirms.DataValueField = "FirmID";
ddlFirms.DataBind();
In repeater:
LinkRepeater.DataSource = DataAccess.GetFirmID();
LinkRepeater.DataBind();
My question: if i change the "FirmID" value, according to that repeater value shoud be populated. Please help me out!