我正在开发 Web 应用程序。在那我使用这么多的 Div 打开弹出窗口。现在我的要求是为该弹出窗口创建动态 div,并且该 div 的所有内容都来自数据库。
那么任何人都可以告诉我如何以编程方式动态创建 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>