简体   繁体   中英

ASP.NET MVC Render View to String

I'm currently using NVelocity to render some email templates.

I'm curious how I can do this with the standard ASP.NET MVC view engine ie render a view as a string.

Basically I want to pass get the string result of a model binded view and pass this to iTextSharp to generate a PDF.

Thanks. Ben

You have a PDF generator that takes html as an arg to generate a pretty PDF?

Look at this blog entry for how to capture a rendered view as a string.

You can use a ContentResult to return Content(yourString, "text/plain"); but you just build the string in the ContentResult method and use no View.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM