So I've been trying to use the RadEditor to export content to PDF but I've had very mixed results on what HTML can be added.
I've been reading HTML from another source and then adding it to the content:
RadEditor.Content = stringOfHTML
Here's the HTML I've been using for my content:
If I just add this line it renders in the PDF:
But adding any additional lines causes the PDF to open blank?
I've seen older posts where <Table> can't be used because it needs Colgroup and col or something but that was from 2009?
Do I need to add the content as a specific mode or something?
I've been reading HTML from another source and then adding it to the content:
RadEditor.Content = stringOfHTML
Here's the HTML I've been using for my content:
<
div
style
=
"width:700px;"
>
<
div
style
=
"width:100%;"
><
img
src
=
"http://www.cloudprojecthosting.com/1050140/Web/Images/imgDCheaderGraphic.png"
width
=
"100%"
/></
div
>
<
div
style
=
"width:49%; float:left;"
>
(%NULL:Author Display Name%)<
br
/>
(%NULL:Author Company%)<
br
/>
(%NULL:Question%)
</
div
>
<
div
style
=
"width:49%; float:right;"
>
(%NULL:Answer Display Name%)<
br
/>
(%NULL:Answer Company%)<
br
/>
(%NULL:Answer%)
</
div
>
</
div
>
If I just add this line it renders in the PDF:
<
div
style
=
"width:100%;"
><
img
src
=
"http://www.cloudprojecthosting.com/1050140/Web/Images/imgDCheaderGraphic.png"
width
=
"100%"
/></
div
>
I've seen older posts where <Table> can't be used because it needs Colgroup and col or something but that was from 2009?
Do I need to add the content as a specific mode or something?