asp.net中如何获取textbox.value属性

2024-12-01 18:58:08
推荐回答(2个)
回答1:

sqlstr = "INSERT INTO AgePerson(Pname,Pbirth,Pfrom)VALUES('" + this.txtName.Text + "','" + this.txtBirth.Text + "','" + this.txtFrom.Text + "')";
把This 去掉
改成 txtName.Text.ToString();其他也一样

回答2:

document.getElementById("txtFrom").value=TheReturnValue;