devxlogo

Get Proper Filtered Results from a Data View

Get Proper Filtered Results from a Data View

Ever notice how your data isn’t filtered properly even though you’ve set the Row Filter Expression correctly? For example, suppose you have this code:

DataView dv  = ds.Tables[0].DefaultView;  dv.RowFilter ="location=11";      foreach(DataRow dr in dv.Table.Rows){    Response.Write(dr[0].ToString()+"<br>");}

This will display all records.

To get the actual result, loop through the DataView itself, as shown below:

for(int j=0; j"); }
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist