プログラム内最初に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);
}
}
}