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