以下は私のコードです、
.aspx:
<table border="0" width="100%" id="maintable" runat="server">
<tr>
<td style="width:90%;vertical-align:top;">
<div id="content_left" runat="server" style="margin-right:10px;
float:left;vertical-align:top;width:690px" ></div>
</td>
<td style="vertical-align:top;background-color:#eee;width:100px;">
<div id="content_right" runat="server" style="background-color:#eee;float:right;
width:300px;"></div>
</td>
</tr>
</table>
.aspx.cs:
HtmlGenericControl aboutme_content = new HtmlGenericControl("div");
aboutme.ID = "aboutme1";
aboutme.Text= "ABOUT ME";
content_left.Controls.Add(aboutme_content);
PdfPTable table_left = new PdfPTable(1);
PdfPCell cell_1 = new PdfPCell();
さて、私の疑問は、どうやって content_left を PdfPCell に追加するかということです。