Randy,
I would say that the DataList web control is more like the ListBox
control and the GridView is more like the DataGridView.
As for scrollbars on the GridView, the container is responsible for
them, meaning, if you place a grid on a page, then the browser is going to
activate the scrollbars depending on the size of the page and the size of
the browser. If you want control over this, then I would suggest placing
your grid in an IFrame element on the page.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> In VS 2005, in the Windows Controls, you have the DataGridView (which has
> scrollbars).
> In the WebControls, is the GridView or the DataList synonymous with the
> DataGridView?
> Can you have scrollbars for the GridView or DataList?
> Thanks