2016-10-13 2 views

답변

0

지금 u는 그냥 클래스 (P1)을 추가 P1 헤더 인쇄하려면 여기를

처럼 헤더의 부모 요소를 통해 UR하는 클래스를 설정해야합니다, P2 헤더 클래스 (P2)를 추가 인쇄 특정 페이지

<header class="p1"> 
    // this p1-header will be visible only rest will hide 
    <h1 class="p1-header">some text p1</h1> 
    <h1 class="p2-header">some text p2</h1> 
    <h1 class="p3-header">some text p3</h1> 

</header> 

.p1-header, .p2-header, .p3-header{ 
    display: none; 
} 

.p1 .p1-header{ 
    display: block; 
} 
.p2 .p2-header{ 
    display: block; 
} 
.p3 .p3-header{ 
    display: block; 
} 
+0

하시다면 응답 @Rahul, – Ranjana

+0

주셔서 감사합니다, 나는 헤더에 대해 서로 다른 cshtml 파일을 가지고 & I는 모든 페이지에 머리글을 인쇄하고 NReco을 사용하고 있습니다에 해당 컨테이너에. – Ranjana

+0

이렇게 : HtmlToPdfConverter htmlToPdf = 새로운 HtmlToPdfConverter(); htmlToPdf.PageHeaderHtml = htmlHeader; – Ranjana