or
.RadScheduler_Web20 .rsSubHeader {page-break-after : always !important;}
<telerik:RadGrid ID="grdRACI" Skin="Outlook" GridLines="Both" runat="server" AutoGenerateColumns="true" OnGridExporting="grdRACI_Exporting" OnItemDataBound="grdRACI_ItemDataBound" OnColumnCreated="grdRACI_ColumnCreated" > <MasterTableView NoMasterRecordsText="No responsibilities defined" NoDetailRecordsText="No responsibilities defined"> </MasterTableView> <ClientSettings> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> <Resizing AllowColumnResize="true" AllowResizeToFit="true" ResizeGridOnColumnResize="true" /> </ClientSettings> <ExportSettings OpenInNewWindow="false" HideStructureColumns="true"> </ExportSettings> </telerik:RadGrid>...grdRACI.ExportSettings.Pdf.PageTitle = "RACI Chart For - " + Session["currentProcessName"].ToString(); grdRACI.ExportSettings.Pdf.DefaultFontFamily = "Arial Narrow"; grdRACI.ExportSettings.Pdf.PageLeftMargin = Unit.Parse("0.25in"); grdRACI.ExportSettings.Pdf.PageRightMargin = Unit.Parse("0.25in"); Session["RACI_PDF_Filename"] = "ExternalDocs/" + "RACI_Chart_ For_" + Session["currentProcessName"].ToString() + " - " + DateTime.Now.ToString("ddMMMyyyy-HHmm") + ".pdf"; grdRACI.MasterTableView.ExportToPdf();...protected void grdRACI_Exporting(object source, GridExportingArgs e) { string path = Server.MapPath("~/" + Session["RACI_PDF_Filename"].ToString()); using (FileStream fs = File.Create(path)) { Byte[] info = System.Text.Encoding.Unicode.GetBytes(e.ExportOutput); fs.Write(info, 0, info.Length); } Response.Redirect(Request.Url.ToString()); }<telerik:RadPane ID="RadPane2" runat="server" OnClientResized="PaneResized" Height="100%" Scrolling="None" MinWidth="200" OnClientCollapsing="CollapseToMinWidth" OnClientBeforeExpand="ExpandFromMinWidth"> <telerik:RadScheduler ID="SPScheduler" runat="server" SelectedView="TimelineView" FirstDayOfWeek="Monday" LastDayOfWeek="Friday" OverflowBehavior="Scroll" OnClientAppointmentMoveEnd="OnAppoinmentMoveEnd" OnClientAppointmentResizeStart="OnAppoinmentResizeStart" OnClientAppointmentInserting="OnAppointmentInserting" DataEndField="End" DataKeyField="ID" OnClientFormCreated="OnFormCreated" DataStartField="Start" DataSubjectField="Phase" CustomAttributeNames="Iteration,Servers,DBType" StartEditingInAdvancedForm="True" StartInsertingInAdvancedForm="True" OnAppointmentDelete="SPScheduler_AppointmentDelete" OnAppointmentInsert="SPScheduler_AppointmentInsert" OnAppointmentUpdate="SPScheduler_AppointmentUpdate" OnAppointmentDataBound="SPScheduler_AppointmentDataBound" OnAppointmentCommand="SPScheduler_AppointmentCommand" OnNavigationCommand="SPScheduler_NavigationCommand" OnTimeSlotCreated="SPScheduler_TimeSlotCreated" OnFormCreated="SPScheduler_FormCreated" ShowResourceHeaders="False" OnPreRender="SPScheduler_PreRender" OnNavigationComplete="SPScheduler_NavigationComplete" Height="100%" MinimumInlineFormHeight="500" MinimumInlineFormWidth="200" Skin="Simple"> <DayView UserSelectable="false" /> <WeekView UserSelectable="false" /> <MonthView UserSelectable="false" /> <TimelineView NumberOfSlots="35" SlotDuration="7.00:00:00" GroupingDirection="Vertical" GroupBy="Order" ShowInsertArea="false" /,