我有一些文本框。当单击“预览”按钮时,它会转到另一个包含 html 模板的页面。我需要替换模板中输入的文本框值。我将如何使用 asp.net 对其进行编码?html模板是
<table width="450" border="0" cellspacing="0" cellpadding="0" class="bg" bgcolor="red">
<tr>
<td width="90" valign="top" class="bg" bgcolor="#ffffff">
<h2 style="width: 642px"> <i><font color="#333333" face="Geneva, Arial" size=2.5>From:</font>
[mg-from]<br/>
<font color="#333333" face="Geneva, Arial" size=2.5>To:</font>
[mg-to]<br/>
<font color="#333333" face="Geneva, Arial" size=2.5>Subject:</font>
[mg-subject]</i></h2>
</td>
</tr>
</table>
我需要用第一页中给出的 txtfrom.text 值替换 html 模板中的 [mg-from] 我将如何使用 asp.net 对其进行编码?