On Wed, Jun 16, 2010 at 1:36 AM, Venkatu <[email protected]> wrote: > have this code > > > DataRow[] dr; > dr = dt.Select("stepid = '1' AND placeid = " + > Convert.ToInt32(h1.Value)); > > > > so dt -- contains so many Rows from that i am going to filtering the > data and add that row to the another DT - Finally bind the Dt to the > Dropdownlist . > > Could anyone tell how to resolve this issue ? -----------------
Do another query against the db with the filter in place. Or make a dataview off the dt. -- Stephen Russell Sr. Production Systems Programmer CIMSgts 901.246-0159 cell
