New to Dot Net Quick question

New to Dot Net Quick question

am 07.11.2007 04:14:27 von Josh

I would like to create a page simalar to this one:



http://www.cdms.net/manuf/mprod.asp?mp=11&lc=0&ms=3691&manuf =11



Can I use a grid view control and store my data in a MySQL database? Or do
you recommend another control? I have a lot of information and need to
update it frequently and want the list sorted alphabetically.



TIA

Josh

Re: New to Dot Net Quick question

am 07.11.2007 04:39:21 von Andrew Faust

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

--
Andrew Faust
andrew[at]andrewfaust.com
http://www.andrewfaust.com


"Josh" wrote in message
news:%23DIQPxOIIHA.2100@TK2MSFTNGP03.phx.gbl...
>I would like to create a page simalar to this one:
>
>
>
> http://www.cdms.net/manuf/mprod.asp?mp=11&lc=0&ms=3691&manuf =11
>
>
>
> Can I use a grid view control and store my data in a MySQL database? Or
> do you recommend another control? I have a lot of information and need
> to update it frequently and want the list sorted alphabetically.
>
>
>
> TIA
>
> Josh
>
>

Re: New to Dot Net Quick question

am 07.11.2007 10:54:10 von Mansi Shah

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.

*** Sent via Developersdex http://www.developersdex.com ***

Re: New to Dot Net Quick question

am 08.11.2007 05:56:00 von Josh

Any suggestion on sites containing information on either of these controlls?

Josh

"Mansi Shah" wrote in message
news:OTUYmQSIIHA.1208@TK2MSFTNGP03.phx.gbl...
>
> 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.
>
> *** Sent via Developersdex http://www.developersdex.com ***