普加项目管理中间件是用于跨浏览器和跨平台应用程序的功能齐全的 Gantt 图表,可满足项目管理应用程序的所有需求,是最完善的甘特图图表库。
同样普加项目管理中间件提供了导出方法,可以导出XML格式的文件,这个文件可以在微软project中直接打开展示。
var win = new PlusProject.ExportProjectWindow({
project: this.project
});
win.setData();
win.show();
后台处理如下:
//1)导出为XML
Hashtable dataProject = new ProjectService().LoadProject(id);
string fileName = Path.GetFileNameWithoutExtension(Convert.ToString(dataProject["Name"])) + "_" + DateTime.Now.ToString("yyyyMMddHHmmss")+".";
string fileType = Request["type"];
if (string.IsNullOrEmpty(fileType))
{
fileType = "xml";
}
fileName += fileType;
string filePath = HttpContext.Current.Server.MapPath(@"~/Upload/" + fileName);
//导出自定义任务属性
ExportExtendedAttributes(dataProject);
//对固定工期的摘要任务,设置为手动模式,以便在MSProject完整显示。
ExportFixedDateSummarys(dataProject);
PluSoft.Utils.PlusProject.Write(filePath, dataProject);
//2)下载XML
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
Response.WriteFile(filePath);
Response.Flush();
FileInfo file = new FileInfo(filePath);
file.Delete();
Response.End();
很多情况下,用户会有一些自定义字段的展示,普加项目管理中间件也可以直接导出。但是使用的时候需要参考相关的说明来处理,示例代码中有详细的说明。
标签:11,string,项目管理,导出,中间件,dataProject,Response From: https://blog.51cto.com/u_16081226/7411534