Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DataTable dt; // datatable with firstname, lastname, city
DataView dv = dt.DefaultView;
dv.Sort = "city, lastname DESC"; // City column sorted ASC (default) and lastname DESC;