To hide an entire row in a GridView control consists of two steps. First, you need to override the OnRowCreated event of the GridView. This event has a GridViewEventArgs parameter that will give you access to the underlying Row.DataItem, enabling you...