前台代码:
后台代码: protected void btnOK_Click(object sender, EventArgs e)
{
string str= hfTxt.Value;
ClientScript.RegisterStartupScript(this.GetType(), "", "");
}
asp.net的cs后台是可以获取前台所有控件的,包括非服务器控件。
前台页面:
// 在需要生成TextBox的地方添加一个Panel,名字为panel1
TextBox textBox1=new TextBox();
textBox1.Text="Some Value";
panel1.Controls.Add(textBox1);