Hi,
I have a razor page that show up some results get from database.
The application use asp net core Identity for logins and https.
I need to add a button "export to pdf" on top of page that convert the current page content, without have to reload it using url.
Samples in documentation always converts external url; my need is to convert the page itself.
If I pass as parameter the full url of the page, the result is the pdf conversion of the app login page.
Maybe is there a way to get html string of the current razor page and pass it to the converter?
Can you help me ?
Thanks