SharePoint Web パーツ ソリューションの ascx ページでグリッドをエクスポートしてエクセルしようとしています。次のエラーがスローされます
Control 'ctl00_ctl24_g_20574c20_e209_4887_ab02_83ee55a79fc5_ctl00_gdReport' of type 'GridView' must be placed inside a form tag with runat=server.
このエラーを回避するには、次のメソッドを使用する必要がありますが、コンパイラは「オーバーライドする適切なメソッドが見つかりません」というエラーをスローします
public override void VerifyRenderingInServerForm(Control control) { }
完全なコード:
protected void btnExcelExport_Click(object sender, EventArgs e)
{
PrepareForExport(gdSharedReport);
ExportToExcel();
}
private void ExportToExcel()
{
Response.Clear();
Response.AddHeader("content-disposition", "attachment;filename=Report.xls");
Response.Charset = String.Empty;
Response.ContentType = "application/ms-excel";
StringWriter stringWriter = new StringWriter();
HtmlTextWriter HtmlTextWriter = new HtmlTextWriter(stringWriter);
gdSharedReport.RenderControl(HtmlTextWriter);
Response.Write(stringWriter.ToString());
Response.End();
}
private void PrepareForExport(Control ctrl)
{
//iterate through all the grid controls
foreach (Control childControl in ctrl.Controls)
{
//if the control type is link button, remove it
//from the collection
if (childControl.GetType() == typeof(LinkButton))
{
ctrl.Controls.Remove(childControl);
}
//if the child control is not empty, repeat the process
// for all its controls
else if (childControl.HasControls())
{
PrepareForExport(childControl);
}
}
}