Trying to add custom header to spreadsheet.
String dyanmiccustomer = "'Customer" + 1 + "='" + "'Romona Heaslip" + 1 + "'";
List<object> data = new List<object>()
{
new { dyanmiccustomer= "Romona Heaslip", Model= "Taurus", Color= "Aquamarine", PaymentMode= "Debit Card", DeliveryDate= "07/11/2015", Amount= "8529.22" },
}
However the webpage shows
dyanmiccustomer in the spreadsheet not
"'Customer" + 1 + "='" + "'Romona Heaslip" + 1 + "'";
This might be a simple C# problem.