摘要: using Aspose.Words; string tmppath = Server.MapPath("~/TestWord.doc"); Document doc = new Document(tmppath); //载入模板 if (doc.Range.Bookmarks["Rhythmk"] != null) { Bookmark mark = doc.Range.Bookmarks["Rhythmk"]; mark.Text = "张三公司"; } doc.... 阅读全文
posted @ 2011-12-05 12:43 Rhythmk 阅读(31419) 评论(8) 推荐(3) 编辑
摘要: ---------SQL SERVER -------------------- 获取用户表select id,name from sysobjects where xtype='U'and name<>'dtproperties' order by name---- 获取用户存储过程select id,name from sysobjects where xtype='P'and name<>'dtproperties' order by name--- 获取用户视图select id,name from 阅读全文
posted @ 2011-12-05 10:58 Rhythmk 阅读(271) 评论(0) 推荐(0) 编辑
Rhythmk 个人笔记