111,120
社区成员
发帖
与我相关
我的任务
分享
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Button button1 = new Button();
button1.Text = "Click";
button1.ID = "button1";
TextBox textBox1 = new TextBox();
textBox1.Text = "Good Morning.";
textBox1.ID = "textBox1";
if (IsPostBack)
{
textBox1.Text = "Good Afternoon.";
}
Form.Controls.Add(button1);
Form.Controls.Add(textBox1);
}
}
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Button button1 = new Button();
button1.Text = "Click";
button1.ID = "button1";
TextBox textBox1 = new TextBox();
textBox1.ID = "textBox1";
if (IsPostBack)
{
textBox1.Text = "Good Afternoon.";
}else{
textBox1.Text = "Good Morning.";
}
Form.Controls.Add(button1);
Form.Controls.Add(textBox1);
}
}