Reputation:
I know my post might sounds a bit silly BUT: I ve learn asp.net by myself and now I'm wondering if there's better way than gridview to simply present data with linq with features like sort/filter / update / insert / delete...
If gridview are still common, what's the best way to implement them?
Thanks in advance for your answers
Upvotes: 0
Views: 78
Reputation: 3760
Use ListView, that gives you more control over output and behavior. It works perfectly in connection with DataSource controls and DataPager.
Here you can find an extremely detailed tutorial by the ASP.NET guru Scott Guthrie.
Upvotes: 1