私はWebアプリケーションを開発しています。私はポップアップを開くために非常に多くの部門を使用しています。今私の要件はそのポップアップのための動的Divを作成することであり、そのdivのすべてのコンテンツはデータベースから来ます。ASP.NetでダイナミックDivタグを作成
Divを動的にプログラマチックに作成する方法を教えてもらえますか?
本部のための私のサンプルコード..
<div id="Popup" runat="server" class="hidden-content">
<table width="auto">
<tr>
<td style="font-size: 20px; font-weight: bold; text-align: center;">
<p>
</p>
<b>Diabetes</b>
</td>
</tr>
<tr>
<td style="font-size: 15px; text-align: left;">
<p>
Type I diabetes (also known as juvenile diabetes) is the less common form of diabetes.
It usually is diagnosed during childhood or teen years and requires treatment with
insulin.
</p>
</td>
</tr>
</table>
</div>