Furqan Sehgal
Furqan Sehgal

Reputation: 4997

Datagridview like control for asp.net

I need to use something like DataGridView of winforms on asp.net webform. If I use GridView control of asp.net, the look and functionality is really poor.
Is there anything else that could give me better look and functionality as Datagridview is not available in asp.net?

Upvotes: 0

Views: 1591

Answers (2)

Steven Mays
Steven Mays

Reputation: 365

I use this: http://www.jtable.org/

It uses JQuery and AJAX and provides something way different then gridview.

Upvotes: 1

Jason Meckley
Jason Meckley

Reputation: 7591

there are a number of 3rd party webforms controls from componentOne, Telerik, and DevExpress that may suit your needs.

if you don't have a budget for purchasing controls then WebGrid and/or plain old Html along with some js and css to spice up the UX is your next option.

remember that webforms (http for that matter) is a different experience for the user a web app shouldn't necessarily be exactly the same as the desktop and vice versa. trying to fit the concepts of on into the other means you are working against the framework, not with it.

Upvotes: 0

Related Questions