/ Published in: C#
Expand |
Embed | Plain Text
DataView dvName = dtName.DefaultView; dvName.RowFilter = "ID = " + intID dvName.Sort = "Date DESC";
You need to login to post a comment.
krisdb on 04/17/08
1 person have marked this snippet as a favorite
DataView dvName = dtName.DefaultView; dvName.RowFilter = "ID = " + intID dvName.Sort = "Date DESC";
You need to login to post a comment.