从ASP到ASP.NET:LiteralControl

以前写ASP时比较习惯用<%=String1 %>或<% Response.Write(string1) %>

在ASP.NET中这样写显得很混乱,与ASP.NET事件模型机制不相称。


今天学会了LiteralControl :

this.Controls.Add(new LiteralControl("<h3>Value: "));

    TextBox box = new TextBox();
    box.Text = "0";
    this.Controls.Add(box);

    this.Controls.Add(new LiteralControl("</h3>"));
}

 

 

 

你可能感兴趣的:(asp.net)