Doing a basic web application. When using gridview there are number of restrictions with freezing columns, vertical scrolling etc. Even we blend the layout with html, still the gridview has issues aligning well and it's not responsive.
So I want to use html, css front end and asp.net (c#) for backend. Displaying the data from the data base is not magic using html. However for editing data, getting user input, saving into database (CRUD operations) is readily available with gridview's event triggers. e.g. refers to bound field and id respectively and accurately.
The problem I am facing, I am not sure how to go about capturing user edits, saving data events in html and pass the data into the database via asp code. Any suggestions please?