我在程序中首先从 datadase 调用文本,然后将其发布到文本框中,然后对 textbos 中的文本进行更改,最后我需要在数据库中进行更改。当我点击保存按钮时的问题不会在文本框中进行更改,而只会在数据库上进行
namespace WebApplication4
{
public partial class WebForm17 : System.Web.UI.Page
{
DATAACCESS aaa = new DATAACCESS();
string Dname = "Finding";
protected void Page_Load(object sender, EventArgs e)
{
aaa = new DATAACCESS();
TextBox2.Text= aaa.GetDoctext(Dname, 90);
}
protected void Button5_Click(object sender, EventArgs e)
{
string textboxvalue = Request.Form[TextBox2.UniqueID];
aaa.savetext(textboxvalue, Dname, 90);
}
}
}