Dear all,
I hope you are doing well. I was developing one component using Angular 8 and ASP .Net MVC with REST Api.
I have generated one pdf using ASP .Net and I am returning array as base64 string to that component.
I have used following code to convert that base64 string to pdf is :
- let html = '';
- html += "";
- html += '';
- html += '
- html += "";
- html += "";
- setTimeout(() => {
- const win = window.open('', "_blank");
- win.document.write(html);
- }, 100);
Please let me know solution on this problem.
Thanking you in advance.
Regards.
Mandar ShindePosted Oct 22, 2019, 11:44 PM
Ronika JencyPosted Oct 22, 2019, 7:03 AM