Welcome to the ASP.NET Core feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Core, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Trying out the ASP.Net Core module "HtmlToPdf" everything seems to work as advertized. It is easy to undrstand and implement. The example:

            PdfDocument document = htmlConverter.Convert("https://www.google.com");

works marvelously.

 However, I do not know how to get it pointed to a form generated internally by my application. I have not had any luck converting a form using MVC routing, /{controller}/{action}, syntax called in this way..

 PdfDocument document = htmlConverter.Convert("/Pull/Index","https://localhost:44317/");

I would appreciate any help on to how to get Convert method to work more generally for html forms generated by local code.

Thanks,

Russell Fisher