摘要:
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]; ... 阅读全文
摘要:
<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 阅读全文
摘要:
将你要输出的内容放在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 阅读全文