Hello,
I have a datatable as below. How can i format it as in increasing the size, border lines etc.
Thanks
// DataTable dtSales = new DataTable();
DataTable dtSales = btnCompleteSales();
string strTable = "<table>";
strTable += "<tr ><td>";
strTable += "Description";
strTable += "</td>";
strTable += "<td>";
strTable += "Qty";
strTable += "</td>";
strTable += "<td>";
strTable += "Price";
strTable += "</td>";
strTable += "<td>";
strTable += "Total";
strTable += "</td></tr>";
for (int i = 0; i < dt ...
Go to the complete details ...