Click here to Skip to main content
15,905,008 members

Comments by Member 8533630 (Top 14 by date)

Member 8533630 5-May-14 7:50am View    
How to generate proper layout in PDF Report.Like I want to display data in tabular format.
Please help me.
Member 8533630 1-May-14 5:24am View    
I have checked these sites.but dynamic data is not displaying on report only static values are displaying.Please help me.
Member 8533630 12-Dec-13 0:32am View    
I have same problem but my site hosted on IIS.
This problem is coming on hosted site when application works on IE10 and 11.
I have tried this solution but its not working at my end.
Please solve this problem.
Member 8533630 11-Dec-13 5:04am View    
This is some line of code which i have seen on localhost...This problem is not coming on localhost.
dgGrid.ItemStyle.VerticalAlign = VerticalAlign.Top;
dgGrid.HeaderStyle.Font.Bold = true;
dgGrid.DataBind();
dgGrid.RenderControl(hw);

// Write the HTML back to the browser.
Response.ContentType = "application/vnd.ms-excel";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("iso-8859-1");
this.EnableViewState = false;
Response.AddHeader("Content-Disposition", "attachment; filename=" + FileName + ".xls;");
Response.Write(tw.ToString());
Response.End();
dggrid is a datagrid.
Member 8533630 11-Dec-13 4:16am View    
Yes i have checked in firefox. Its working. Only problem is coming in IE 10 and 11.
This problem is coming sometime like sometime giving error message or sometime export to excel operation successfully exported the data into the excel sheet.