上文中我們提到,希望動態窗體的格式等全部可以由用戶進行設定,這樣,用戶可以有最大的靈活性,於是,最終,我們的Form文件看起來可能是這樣的:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<style type="text/css">
<!--
.STYLE3 {
font-family: "宋體";
font-size: 12px;
}
.STYLE4 {
font-family: "宋體";
font-size: 24px;
font-weight: bold;
}
.STYLE6 {
font-family: "幼圓";
font-size: 36px;
}
-->
</style>
</head>
<body>
<font size="+3"><asp:PlaceHolder runat="server" ID="__RowName"></asp:PlaceHolder> <!--標題--></font>
<hr />
<table width="730" border="0" cellpadding="0" cellspacing="0" class="STYLE3">
<tr>
<td align="center">(發布:<asp:PlaceHolder runat="server" ID="__Text1"></asp:PlaceHolder> <!--發布人--> 時間:<asp:PlaceHolder runat="server" ID="__Text2"></asp:PlaceHolder> <!--發布時間-->)</td>
</tr>
<tr>
<td>
<asp:PlaceHolder runat="server" ID="__Content"></asp:PlaceHolder>
<!--新聞內容--> </td>
</tr>
</table>
<!--新聞內容-->
</body>
</html>