Hi,
I have many HTML Tables inside the DIV tag. i export whole DIV tag to Excel. but i got alignment issue.
ie. In first table first column have with 300px means second table first column also take same width,
Which table column width is high, then another tables took that max width.
i need to set width each columns in tables.
iam using this code to export
Response.AddHeader("content-disposition", "attachment;filename=Guarantee_claim.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.xls";
System.IO.StringWriter stringWrite = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
divExport.RenderControl(htmlWrite);
Response.Wri ...
Go to the complete details ...