摘要: public class GridDecorator{ public static void MergeRows(GridView gridView) { for (int rowIndex = gridView.Rows.Count - 2; rowIndex >= 0; rowIndex--) { GridViewRow row = gridView.Rows[rowIndex]; GridViewRow previousRow = gridView.Rows[rowIndex + 1]; ... 阅读全文
posted @ 2012-09-10 11:14 Black Bean 阅读(115) 评论(0) 推荐(0) 编辑
摘要: <frameset cols="70%,*" id="body" frameborder="0" border="0"> <frame src="flow_view_chartmodel.aspx" id="MiddleBody" > <frame src="FlowSetRight.aspx" scrolling="no" id="rightBody" > </frames 阅读全文
posted @ 2012-09-10 10:49 Black Bean 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 将你要输出的内容放在asp:panel标签内,StringWriter tw =new StringWriter(); HtmlTextWriter hw =new HtmlTextWriter(tw); this.pan_content.RenderControl(hw); System.Web.HttpResponse response = System.Web.HttpContext.Current.Response; response.Clear(); response.ContentEncoding = System.Text.Encoding.GetEncoding("g 阅读全文
posted @ 2012-09-10 10:44 Black Bean 阅读(219) 评论(0) 推荐(0) 编辑