我想显示来自"其他"的html代码,我怎么能?
这是我的代码
if (output == "1")
{
Session["user"] = textuser.Text;
Response.Redirect("~/Default2.aspx");
}
else
{
// show html code <h4 id='error1' runat ='server'></h4>
}
答案 0 :(得分:2)
您可以将该控件添加到页面,但使用Visible=false
<h4 id="error1" runat="server" Visible="false"></h4>
然后你可以设置从旁边的代码中看到它:
error1.Visible = true;
error1.InnerText = "Some message";
答案 1 :(得分:0)
有很多方法可以给猫皮肤,但一种方法是在你的WebForm中添加HtmlGenericControl,传递适当的标签(&#34; h3&#34;或&#34; h4&#34 ;)到构造函数。