0

我使用 ASP.net MVC 3。我有这两个要求。第一个是在我的应用程序中创建发票。我想将数据导出为 pdf 、 word 、 excel 文件。我下载了itextsharp dll,谁能告诉我,除了ui中的数据到pdf、word和excel文档之外,还有其他替代方法吗?其次是我需要在单击打印按钮后打印文档。如何使用导出文档中的打印按钮连接打印机?

4

1 回答 1

2

您可以使用片段。

这个很棒。看看它。

这是一个使用示例:

HTML

<asp:GridView ID="GridView1" runat="server"
  AutoGenerateColumns = "false" Font-Names = "Arial"
  Font-Size = "11pt" AlternatingRowStyle-BackColor = "#C2D69B" 
  HeaderStyle-BackColor = "green" AllowPaging ="true"  
  OnPageIndexChanging = "OnPaging" >
 <Columns>
  <asp:BoundField ItemStyle-Width = "150px" DataField = "CustomerID"
  HeaderText = "CustomerID" />
<asp:BoundField ItemStyle-Width = "150px" DataField = "City"
  HeaderText = "City"/>
<asp:BoundField ItemStyle-Width = "150px" DataField = "Country"
  HeaderText = "Country"/>
<asp:BoundField ItemStyle-Width = "150px" DataField = "PostalCode"
  HeaderText = "PostalCode"/>
 </Columns>
</asp:GridView>

用于 pdf 示例的C#

protected void btnExportPDF_Click(object sender, EventArgs e)
{
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition",
 "attachment;filename=GridViewExport.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
GridView1.AllowPaging = false;
GridView1.DataBind();
GridView1.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());
Document pdfDoc = new Document(PageSize.A4, 10f,10f,10f,0f);
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End(); 
}

用于 Excel 示例的C#

protected void btnExportExcel_Click(object sender, EventArgs e)
{
Response.Clear();
Response.Buffer = true;

Response.AddHeader("content-disposition",
"attachment;filename=GridViewExport.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);

GridView1.AllowPaging = false;
GridView1.DataBind();

//Change the Header Row back to white color
GridView1.HeaderRow.Style.Add("background-color", "#FFFFFF");

//Apply style to Individual Cells
GridView1.HeaderRow.Cells[0].Style.Add("background-color", "green");
GridView1.HeaderRow.Cells[1].Style.Add("background-color", "green");
GridView1.HeaderRow.Cells[2].Style.Add("background-color", "green");
GridView1.HeaderRow.Cells[3].Style.Add("background-color", "green");  

for (int i = 0; i < GridView1.Rows.Count;i++ )
{
GridViewRow row = GridView1.Rows[i];

//Change Color back to white
row.BackColor = System.Drawing.Color.White;

//Apply text style to each Row
row.Attributes.Add("class", "textmode");

//Apply style to Individual Cells of Alternating Row
if (i % 2 != 0)
{
    row.Cells[0].Style.Add("background-color", "#C2D69B");
    row.Cells[1].Style.Add("background-color", "#C2D69B");
    row.Cells[2].Style.Add("background-color", "#C2D69B");
    row.Cells[3].Style.Add("background-color", "#C2D69B");  
}
}
GridView1.RenderControl(hw);

//style to format numbers to string
string style = @"<style> .textmode { mso-number-format:\@; } </style>"; 
Response.Write(style);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();
}
于 2013-05-18T13:41:44.740 回答