Я использовал Rotativa nuget для конвертирования html в pdf в ASP MVC 5, он работал нормально на Localhost, но когда я загружал опубликованную версию на сервер Rotativa out, текст pdf был испорчен. пожалуйста, помогите мне.
GO to this link :
http://www.mehrdiet.com/Doctor/DietTherapy/LineRegimePrint/64
and under footer click on Download pdf
мой код конвертации:
[AllowAnonymous]
public ActionResult Convert(int id)
{
return new ActionAsPdf("LineRegimePrint", new { id = id });
}