问题一

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 开发时遇到的问题的更多相关文章

  1. 【夯实PHP基础】php开发时遇到白页的调试方法

    本文地址   分享提纲: 1. 设置报错报错级别,显示报错 2. 白页的可能原因     1.[设置报错报错级别,显示报错] php开发时,访问地址也对,但就是不出来页面,显示的是 白的页面,所以就可 ...

  2. Golang Web开发时前端出现谜之空白换行的坑

    在使用Golang做Web开发时,有时候渲染出来的模板在前台显示时会出现一些奇怪的空白换行,具体特征就是查看css样式表并没有相关定义的空白部分. 分析: 查看出现问题页面的网页源代码,复制空白换行部 ...

  3. grunt-connect-proxy解决开发时跨域问题

    最近的项目中前后端是完全分离开发的,前端用grunt管理项目.这样就会导致一个问题:开发时前端调用后台的接口时因为不在一个服务器,所以会出现跨域问题.但是也不能用JSONP或CROS方式实现真正的跨域 ...

  4. J2EE开发时的包命名规则

    http://www.blogjava.net/paulwong/archive/2012/04/15/374675.html 转一个J2EE开发时的包命名规则,养成良好的开发习惯 代码编写规范目的: ...

  5. Brophp框架开发时连接数据库读取UTF8乱码的解决(转)

    Brophp框架开发时连接数据库读取UTF8乱码的解决办法 (2012-09-15 10:41:22) 转载▼ 标签: 杂谈 it php 分类: 建站技术 Brophp框架开发时连接数据库读取UTF ...

  6. iOS开发时,在Xcode中添加多个Targets进行版本控制

    在iOS开发中,很可能有以下场景:需要开发多个版本,或因需区分收费版,免费版,或因为网络环境需要区分测试版,发布版,或因渠道不同需要区分企业版,AppStore版等等.解决办法无非就是CheckOut ...

  7. WCF开发时如何选择正确的实例模式(InstanceMode)?

    WCF开发时如何选择正确的实例模式(InstanceMode)?   在使用WCF实例模型时,你是否思考过这几个的问题: ”WCF中的实例模式如何正确应用”? ”使用WCF中的实例模式有何原则可以遵循 ...

  8. 微信jsSDK公众号开发时网页提示 invalid signature错误的解决方法

    微信公众号开发jsSDK,链接地址不能加?参数,可以通过#传递参数. 不然.页面wx.ready()时就会报错,用 wx.error(function (res) { alert("接口验证 ...

  9. 程序员网站开发时应该注意的SEO问题

    一.链接的统一性 搜索引擎排名最主要的因素就是网站内容和链接,假如网站内部链接不一致,在很大程度上直接影响着网站在搜索引擎中的排名.例如彩票专营店导航栏中的“首页”链接,程序员在开发时可能会有以下几种 ...

随机推荐

  1. Strong TLS configuration on servers

    - Use certificates with at least sha-256 hash algorithms (including intermediate certificates).- Use ...

  2. HttpClient_用Apache HttpClient实现URL重定向

    很多网站都使用了URL重定向技术,把一个原始请求从一个位置路由到另一个位置.原因可能是多方面的,比如域名转发.URL缩写.隐私保护.在同一网站维持相似的域名等.本文讲述怎样使用Apache HTTPC ...

  3. 约跑APP测试报告

    用户需求规格说明书URL:http://www.cnblogs.com/liquan/p/6071804.html 组长博客URL:http://www.cnblogs.com/liquan/ 代码g ...

  4. 连连看的设计与实现——四人小组项目(GUI)

    项目GUI界面经过简单设计,整理如下:(图片截取致宠物连连看3.1) 点开游戏后界面显示: 点击菜单游戏—>初级 后显示 -------------------------- > 当游戏时 ...

  5. Editplus从下载到使用

    ☆ 准备工作 1,保证浏览器正常上网 2,能下载软件或已经下载到Editplus这个工具. ☆ 下载editplus 在浏览器输入http://www.editplus.com,然后回车.进入edit ...

  6. UVa 11624 Fire!(BFS)

    Fire! Time Limit: 5000MS   Memory Limit: 262144KB   64bit IO Format: %lld & %llu Description Joe ...

  7. ThinkPHP 学习笔记 ( 三 ) 数据库操作之数据表模型和基础模型 ( Model )

    //TP 恶补ing... 一.定义数据表模型 1.模型映射 要测试数据库是否正常连接,最直接的办法就是在当前控制器中实例化数据表,然后使用 dump 函数输出,查看数据库的链接状态.代码: publ ...

  8. spring mvc超强的json支持,你自己根本不需要额外的配置。spring mvc都给你配置好了!!!

    SpringMVC层跟JSon结合,几乎不需要做什么配置,代码实现也相当简洁.再也不用为了组装协议而劳烦辛苦了! 2.一.Spring注解@ResponseBody,@RequestBody和Http ...

  9. centos时间同步方法

    centos时间同步方法 电脑软硬件应用网 45IT.COM 时间:2012-12-08 18:09 作者:李本清 新装的服务器可能设置了错误的,需要调整时区并调整时间.如下是使用NTP来从一个时间服 ...

  10. XBox 开发者大会

    今天参加了微软的Xbox开发者大会,虽然没我什么事情,不过还是有不少的收获,随便说说自己的一点感受吧. 先上几张图,附带妹子一个,不过手机不清楚哈,~~ 1 ID@XBOX开发者计划与独立游戏开发者 ...