您好我有一个MVC应用程序,其中使用iTextSharp将页面转换为PDF。我有一个单独的PDF样式表,名为pdfStyleSheet.css,链接到_PDFLayout。将CSS页面链接到我的页面布局时,样式不会被传递。我的链接如下。但是,如果我在_PDFLayout中放置内部样式,它可以正常工作。我有什么想法我做错了吗?
以下代码不起作用
_PDFLayout 链接
<link rel="stylesheet" type="text/css" href="~/Content/pdfStyleSheet.css" />
pdfStyleSheet.css
.test {
font-weight:bold;
color:red;
}
HTML
<div class="test">
@Html.DisplayNameFor(model => model.Requestor)
</div>
控制器
public ActionResult getPDF(int id)
{
MEOmodel model = _repository.GetMEOById(id);
return new PdfActionResult(model);
}