You should use DataList or Repeater control to achieve showing 4 columns of records in a single row (the photos). Why I didn't mention datagrid and gridview is because they do not allow you to repeat records in one row. Look for the RepeatColumns property of the DataList. If you are using any of the controls mentioned above, then you can get the data from the db and then bind it to the Dataaware controls. From the db, you can get only the relevant informations (like leaving out the attorney's retired or who are no longer working for the firm). Following is an example of SQL statement.
' Assumption if the attorney retires or no longer in the firm
' IsActive is set to 0
SELECT * FROM Attorneys WHERE IsActive = 1
If you do this way, you do not have to do anything in the designer.