因为当我使用Response.Write
时,html代码会显示在我的表单上方,我希望它位于顶部。
答案 0 :(得分:0)
在.aspx页面中使用ASP文字:
<asp:Literal ID="MyLiteral" runat="server">
然后在后面的代码中:
MyLiteral.Text = "The HTML or text you want to appear where MyLiteral is."
要附加到它,请使用+ =运算符:
MyLiteral.Text = "<table><tr><td>First cell</td>"
MyLiteral.Text += "<td>Second cell</td></tr></table>"