Click here to Skip to main content
15,893,564 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.got error while exporting to excel have any idea please post answer....
Posted
Comments
[no name] 5-Oct-12 7:26am    
Please put some code so we can help u.
Question is not clear.
bhargavpp 5-Oct-12 8:37am    
Button btnDownloadFile = (Button)sender;
FileInfo OutFile = new FileInfo(MapPath(btnDownloadFile.CommandArgument));
Response.Clear();
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("content-disposition", "attachchment; filename=" + FileName + ";");
Response.Charset = "";

// If you want the option to open the Excel file without saving then
// comment out the line below
// Response.Cache.SetCacheability(HttpCacheability.NoCache);

StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
gvJewellery.RenderControl(hw);
Response.Write(sw.ToString());
Response.TransmitFile(responseFile);
// Response.TransmitFile(MapPath(btnDownloadFile.CommandArgument));

Response.End();

got problem in line Response.TransmitFile...now please help
[no name] 5-Oct-12 13:21pm    
It is better to update your question and put the code there.
The codes are going to be more readable.
bhargavpp 6-Oct-12 7:07am    
are bhai there no more clear code then this one in this world

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900