In an ASP.NET web application, you need to show a list of clients on a webpage, displaying 10 clients per page with the capability to edit their details. Which Web control should you use?
Explanation
The GridView control is designed to display multiple records in a tabular format with built-in support for paging and editing. DetailsView and FormView are more suited for single-record display and editing. The Table control is static and does not support data binding or editing features. Therefore, GridView is the most appropriate choice for displaying and editing a list of clients with pagination.