// create the DataGrid and perform the databinding
System.Web.UI.WebControls.DataGrid grid =
new System.Web.UI.WebControls.DataGrid()
grid.HeaderStyle.Font.Bold = true
grid.DataSource = data
grid.DataMember = data.Stats.TableName
grid.DataBind()
// render the DataGrid control to a file
using(StreamWriter sw = new StreamWriter("c:\\test.xls"))
{
using(HtmlTextWriter hw = new HtmlTextWriter(sw))
{
grid.RenderControl(hw)
}
}
如果你再打开输出文件在一个文本编辑器,你会发现它仅仅包含了一个简单的HTML。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)