Aspose.Words 开发时遇到的问题
问题一
Document doc.Save(Response, "学员报名表.pdf", ContentDisposition.Inline, null); 执行后没有效果,因为异步的时候需要加,如果不是异步,即没有使用UpdatePanel,那么就不要加此方法Triggers。
解决
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:PostBackTrigger ControlID="btnExportAndPrint" />
</Triggers>
<ContentTemplate>
<asp:Button runat="server" ID="btnExportAndPrint" class="btn btn-primary" Text="打印报名表" OnClick="btnExportAndPrint_Click"/>
</ContentTemplate>
</asp:UpdatePanel>
我的程序
protected void btnExportAndPrint_Click(object sender, EventArgs e)
{
string studentNo = txtStudentCode.Text;
if (!string.IsNullOrWhiteSpace(studentNo))
{
OLD_StudentUser student = OLD_StudentUserDAL.GetByStudentNo(studentNo);
string templateFile = Server.MapPath("../Template/Word/学员报名表.doc");
//string photoPath = Server.MapPath("../IDCardPhoto/142201199201264557.Bmp"); //测试方法
string photoPath = Server.MapPath(student.ZP);
Document doc = new Document(templateFile);
doc = ExportAndPrintHelper.ExportAndPrintRegister(doc,student,studentNo,photoPath);
if (doc != null)
{
doc.Save(Response, "学员报名表.pdf", ContentDisposition.Inline, null);
}
}
else
{
Response.Write("<script>alert('学员学号为空!')</script>");
}
}
public class ExportAndPrintHelper
{
/// <summary>
/// 导出和打印学员报名表
/// </summary>
/// <param name="doc"></param>
/// <param name="student"></param>
/// <param name="StudentNo"></param>
/// <param name="photoPath"></param>
/// <returns></returns>
public static Document ExportAndPrintRegister(Document doc, OLD_StudentUser student, string studentNo, string photoPath)
{
DocumentBuilder builder = new DocumentBuilder(doc); if (!string.IsNullOrWhiteSpace(studentNo))
{
#region 基础信息
if (doc.Range.Bookmarks["Code"] != null)
{
doc.Range.Bookmarks["Code"].Text = DateTime.Now.ToShortDateString();
}
if (doc.Range.Bookmarks["Name"] != null)
{
doc.Range.Bookmarks["Name"].Text = student.Name;
}
if (doc.Range.Bookmarks["Sex"] != null)
{
doc.Range.Bookmarks["Sex"].Text = student.Sex;
}
if (doc.Range.Bookmarks["Born"] != null)
{
doc.Range.Bookmarks["Born"].Text = student.DirthDate.ToString("yyyy.MM.dd");
}
if (doc.Range.Bookmarks["StudentNo"] != null)
{
doc.Range.Bookmarks["StudentNo"].Text = student.StudentsNo;
}
if (doc.Range.Bookmarks["Politics"] != null)
{
doc.Range.Bookmarks["Politics"].Text = student.Politics;
}
if (doc.Range.Bookmarks["IDCardNo"] != null)
{
doc.Range.Bookmarks["IDCardNo"].Text = student.SID;
}
if (doc.Range.Bookmarks["EducationLevel"] != null)
{
doc.Range.Bookmarks["EducationLevel"].Text = student.EducationLevel;
}
if (doc.Range.Bookmarks["Units"] != null)
{
doc.Range.Bookmarks["Units"].Text = student.Units;
}
if (doc.Range.Bookmarks["Job"] != null)
{
doc.Range.Bookmarks["Job"].Text = student.Job;
}
if (doc.Range.Bookmarks["Phone"] != null)
{
doc.Range.Bookmarks["Phone"].Text = student.Phone;
}
if (doc.Range.Bookmarks["RelativesPhone"] != null)
{
doc.Range.Bookmarks["RelativesPhone"].Text = student.RelativesPhone;
}
if (doc.Range.Bookmarks["ResidenceAdd"] != null)
{
doc.Range.Bookmarks["ResidenceAdd"].Text = student.ResidenceAdd;
}
if (doc.Range.Bookmarks["Address"] != null)
{
doc.Range.Bookmarks["Address"].Text = student.Address;
}
if (doc.Range.Bookmarks["NowTime"] != null)
{
doc.Range.Bookmarks["NowTime"].Text = DateTime.Now.ToShortDateString();
}
if (doc.Range.Bookmarks["Photo"] != null)
{
builder.MoveToBookmark("Photo");
var img = builder.InsertImage(photoPath);
img.Width = ;
img.Height = ;
}
#endregion #region 所报课程
List<OLD_CourseRegistration> courses = OLD_CourseRegistrationDAL.GetByStudentNo(studentNo);
for (int i = ; i < courses.Count + ; i++)
{
OLD_Class classes = OLD_ClassDAL.GetByClassName(courses[i - ].ClassName);
builder.MoveToCell(, i, , );
builder.Write(courses[i - ].ClassName.ToString());
builder.MoveToCell(, i, , );
builder.Write(classes.TeacherName.ToString());
builder.MoveToCell(, i, , );
builder.Write(classes.SKdate.ToString());
builder.MoveToCell(, i, , );
builder.Write(classes.ClassAdd.ToString());
builder.MoveToCell(, i, , );
builder.Write(classes.FY.ToString());
} for (int cancel = ; cancel >= courses.Count + ; cancel--)
{
builder.DeleteRow(, cancel);
}
#endregion return doc;
}
else
{
return null;
}
}
}
word图片
执行保存之后的图片
Aspose.Words 开发时遇到的问题的更多相关文章
- 【夯实PHP基础】php开发时遇到白页的调试方法
本文地址 分享提纲: 1. 设置报错报错级别,显示报错 2. 白页的可能原因 1.[设置报错报错级别,显示报错] php开发时,访问地址也对,但就是不出来页面,显示的是 白的页面,所以就可 ...
- Golang Web开发时前端出现谜之空白换行的坑
在使用Golang做Web开发时,有时候渲染出来的模板在前台显示时会出现一些奇怪的空白换行,具体特征就是查看css样式表并没有相关定义的空白部分. 分析: 查看出现问题页面的网页源代码,复制空白换行部 ...
- grunt-connect-proxy解决开发时跨域问题
最近的项目中前后端是完全分离开发的,前端用grunt管理项目.这样就会导致一个问题:开发时前端调用后台的接口时因为不在一个服务器,所以会出现跨域问题.但是也不能用JSONP或CROS方式实现真正的跨域 ...
- J2EE开发时的包命名规则
http://www.blogjava.net/paulwong/archive/2012/04/15/374675.html 转一个J2EE开发时的包命名规则,养成良好的开发习惯 代码编写规范目的: ...
- Brophp框架开发时连接数据库读取UTF8乱码的解决(转)
Brophp框架开发时连接数据库读取UTF8乱码的解决办法 (2012-09-15 10:41:22) 转载▼ 标签: 杂谈 it php 分类: 建站技术 Brophp框架开发时连接数据库读取UTF ...
- iOS开发时,在Xcode中添加多个Targets进行版本控制
在iOS开发中,很可能有以下场景:需要开发多个版本,或因需区分收费版,免费版,或因为网络环境需要区分测试版,发布版,或因渠道不同需要区分企业版,AppStore版等等.解决办法无非就是CheckOut ...
- WCF开发时如何选择正确的实例模式(InstanceMode)?
WCF开发时如何选择正确的实例模式(InstanceMode)? 在使用WCF实例模型时,你是否思考过这几个的问题: ”WCF中的实例模式如何正确应用”? ”使用WCF中的实例模式有何原则可以遵循 ...
- 微信jsSDK公众号开发时网页提示 invalid signature错误的解决方法
微信公众号开发jsSDK,链接地址不能加?参数,可以通过#传递参数. 不然.页面wx.ready()时就会报错,用 wx.error(function (res) { alert("接口验证 ...
- 程序员网站开发时应该注意的SEO问题
一.链接的统一性 搜索引擎排名最主要的因素就是网站内容和链接,假如网站内部链接不一致,在很大程度上直接影响着网站在搜索引擎中的排名.例如彩票专营店导航栏中的“首页”链接,程序员在开发时可能会有以下几种 ...
随机推荐
- UOJ#61. 【UR #5】怎样更有力气
大力水手问禅师:“大师,很多事情都需要用很大力气才能完成,而我在吃了菠菜之后力气很大,于是就导致我现在非常依赖菠菜.我很讨厌我的现状,有没有办法少吃点菠菜甚至不吃菠菜却仍很有力气?” 禅师浅笑,答:“ ...
- HttpClient_用Apache HttpClient实现URL重定向
很多网站都使用了URL重定向技术,把一个原始请求从一个位置路由到另一个位置.原因可能是多方面的,比如域名转发.URL缩写.隐私保护.在同一网站维持相似的域名等.本文讲述怎样使用Apache HTTPC ...
- sql server导出insert语句
在所需要导出数据库上右键 选择[任务] 然后选择[生成脚本] 选择数据库,点击下一步到[数据脚本选项] 编写数据的脚本 选择为true 这一步很重要 下一步选择要导出的对象 下一步选择表 点击完成 ...
- UIView+LHQExtension(分类)
// // UIView+LHQExtension.h // 微博 - 李洪强(2016-5-27) // // Created by vic fan on 16/5/30. // Copyr ...
- spark-submit [options]
执行时需要传入的参数说明如下: Usage: spark-submit [options] <app jar | python file> [app options] 参数名称 含义 -- ...
- HTML5 挖宝
http://geek.csdn.net/news/detail/91536 http://mozilla.com.cn/thread-360325-1-1.html
- POJ 3628 Bookshelf 2(01背包)
Bookshelf 2 Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9488 Accepted: 4311 Descr ...
- typecho插件编写教程1 - 从HelloWorld说起
typecho插件编写教程1 - 从HelloWorld说起 老高 187 5月25日 发布 推荐 0 推荐 收藏 2 收藏,189 浏览 最近老高正在编写一个关于typecho的插件,由于typec ...
- RT-Thread相同优先级线程的调度
/* 静态线程的 线程堆栈*/ ]; ]; /* 静态线程的 线程控制块 */ static struct rt_thread thread_test1; static struct rt_threa ...
- iptables的详细介绍及配置方法*
Firewall(防火墙):组件,工作在网络边缘(主机边缘),对进出网络数据包基于一定的规则检查,并在匹配某规则时由规则定义的处理进行处理的一组功能的组件. 防火墙类型:根据工作的层次的不同来划分,常 ...