2006年11月20日
摘要: asp.net中操作word excel等 byte[] filedata = (byte[])ds.Tables[0].Rows[0]["filedata"];然后用下面的语句显示Response.ContentType="application/msword";Response.AddHeader("Content-Disposition", "inline;filename=" + S... 阅读全文
posted @ 2006-11-20 18:15 沉默的心 阅读(178) 评论(0) 推荐(0) 编辑
摘要: asp.net中操作word excel等 byte[] filedata = (byte[])ds.Tables[0].Rows[0]["filedata"];然后用下面的语句显示Response.ContentType="application/msword";Response.AddHeader("Content-Disposition", "inline;filename=" + S... 阅读全文
posted @ 2006-11-20 18:15 沉默的心 阅读(194) 评论(0) 推荐(0) 编辑
摘要: protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Header) { GridViewRow rowHeader = new GridViewRow(0... 阅读全文
posted @ 2006-11-20 18:03 沉默的心 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 这就符合了“设计模式”中的一种重要原则:“迪米特法则”。“迪米特法则”主要是说:让一个“类”与尽量少的其它的类发生关系。 阅读全文
posted @ 2006-11-20 15:13 沉默的心 阅读(125) 评论(0) 推荐(0) 编辑