I still have loads to learn. At the moment I have stored procedures, and a gridview bound to them. It works, but I want to learn new and better ways of doing things.
I discovered I should be using ROW_NUMBER() to help keep my queries relevent to what fits in the paged gridview, which I am going to be implementing.
But what IS the best, coolest, neatest way to query a database to get say, customer information (name, email, phone) based on filters (age, partial name, gender) and display it on the screen?
Ideally I want it to be super userfriendly, with sorting and paging, and I want to be able to add buttons like 'View customer profile' or 'E-mail customer'.
I don't want to spend -years- developing each page though...so doing it all by hand is probably out.
Is gridview the way, or is there another control/method? Is there a guide on how to do this the right way?
I'm still fairly new to asp.net but I am getting there. It just seems like everything is an uphill struggle though.