Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
For Exporting grid view to excel file i use following code

C#
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition","attachment;filename=g.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter ht = new HtmlTextWriter(sw);
gvDisplay.AllowPaging = false;
gvDisplay.DataBind();
gvDisplay.RenderControl(ht);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();

but following error occurred when using Master page on line
C#
GridView1.RenderControl(ht);


Control 'cntPlcHolder_gvDisplay 'GridView' must be placed inside a form tag with runat=server.

pls help me fast
Posted
Updated 10-Feb-12 20:07pm
v2

just write following method
C#
public override void VerifyRenderingInServerForm(Control control)
    {

    }
 
Share this answer
 
Comments
mariamg 3-Apr-12 8:12am    
Hi,
I Write this above Code
but following error
[System.Threading.ThreadAbortException] = {Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.}
then
I deleted a Line of Code "Response.End();"
And
Added HttpContext.Current.ApplicationInstance.CompleteRequest();
It is Passed without error but it is not working
Nilesh Patil Kolhapur 7-Apr-12 6:31am    
it works properly for me
SURESH MOGUDALA 23-Aug-14 5:36am    
Where the gridview located within the Update Panel or Outside the Update Panel ?

If within the Update Panel You need to add Trigger...
like

<asp:UpdatePanel ID="GridView1" runat="server" >

//gridview details


<Triggers>
//Button Id (means ExportBtn)
<asp:PostBackTrigger ControlID="ButtonId" />
</Triggers>

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