DataGridView, GridView and DataList

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

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
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top