New to Dot Net Quick question

  • Thread starter Thread starter Josh
  • Start date Start date
Can I use a grid view control and store my data in a MySQL database?

Yes. You can fill standard DataSet, DataTable & DateReader objects from
MySQL just fine. The GridView control isn't bound to any particular
database type.

I have a lot of information and need to update it frequently and want the
list sorted alphabetically.

Just include an "order by" parameter in your query.
 
Hi,

You can store data in gridview, and you can also apply sorting and
paging easily with it. For sorting use dataview with gridview.


Regards,
Mansi Shah.
 
Any suggestion on sites containing information on either of these controlls?

Josh
 

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