How to insert data into database from html table in asp.net

NewYorkDudZ

New Member
How do I add data into a database from an HTML table?My table is like this:\[code\]html += "<table>";html += "<tr><th>" + "A" + "</th><th>" + "B" + "</th><th>" + "C" + </th></tr>";html += "<tr><td>" + "0" + "</td><td>" + "1" + "</td><td>" + "2" + </td></tr>";html += "</table>";\[/code\]I'm calling the HTML from the server side.
 
Back
Top