Excel 및 Word 내보내기를 포함한 HTML 페이지 내보내기
3556 단어 Excel
protected void btnExport_Click(object sender, EventArgs e)
{
div_table.InnerHtml = hfdHtml.Value;//백그라운드 단추가 생성된 페이지를 삭제할 수 있기 때문에 페이지 내용을 다시 돌려보냅니다.
btnExport.Visible = false;//내보내기 버튼을 보이지 않게 설정
string strFileName = DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.ClearHeaders();
System.Web.HttpContext.Current.Response.Buffer = false;
System.Web.HttpContext.Current.Response.ContentType = "application/octet-stream";
System.Web.HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename="+ strFileName);
}
//word 내보내기 작업, 본 실례는 html 스타일을 내보낼 수 있습니다
protected void btnExport_Click(object sender, EventArgs e)
{
divAdd.Visible = false;// div
string strFileName = DateTime.Now.ToString("yyyyMMddHHmmss") + ".doc";
Response.Buffer = true;
System.Web.HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + strFileName);
Response.ContentType = "application/ms-word";
HttpContext.Current.Response.Charset = "UTF-8";
this.EnableViewState = false;// HtmlWriter
System.IO.StringWriter writer = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlWriter = new System.Web.UI.HtmlTextWriter(writer);
this.RenderControl(htmlWriter);//
HttpContext.Current.Response.Write(writer.ToString());
HttpContext.Current.Response.End();
}
그리고 프런트에서 Validate Request='false'Enable EventValidation='false'를 추가해야 돼요.
주의: 내보낼 때 그림을 표시할 수 없습니다. 절대 경로로 바꾸십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Excel Grep toolExcel Grep tool ■히나가타 ■ 시트 구성 ExcelGrep.cls...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.