私は、ユーザーがテキストを編集できるWebページを作成しようとしています。編集が完了すると、保存され、入力された新しいテキストがデータベースに保存されます。ContentEditableを使用してASP.NETでDBに保存しますか?
私のコードでエラーは発生していませんが、何らかの理由で古いテキストが新しいテキストの代わりにdbに書き直されています。
protected void saveBtn_Click(object sender, EventArgs e)
{
string newName;
string newIntro;
string newEduc;
string newWork;
h1New.Text = h1.Text;
newName = h1New.Text;
newIntro = intro.Text;
newEduc = educ.Text;
newWork = employ.Text;
string connectionInfo = ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString;
using (SqlConnection connection = new SqlConnection(connectionInfo))
{
connection.Open();
SqlCommand myCommand = new SqlCommand("UPDATE simpleContent SET userName = @newName, infoContent = @newIntro, educContent = @newEduc, workContent = @newWork WHERE userID = @userName", connection);
try
{
string username = HttpContext.Current.User.Identity.Name;
myCommand.Parameters.AddWithValue("@userName", username.ToString());
myCommand.Parameters.AddWithValue("@newName", newName.ToString());
myCommand.Parameters.AddWithValue("@newIntro", newIntro.ToString());
myCommand.Parameters.AddWithValue("@newEduc", newEduc.ToString());
myCommand.Parameters.AddWithValue("@newWork", newWork.ToString());
myCommand.ExecuteNonQuery();
connection.Close();
}
catch
{
Response.Redirect("http://www.google.co.uk");
}
}
}
は、私はあなたが持つかもしれないポインタをいただければ幸いです。
は、ここに私のコードビハインドです。
あなたが現在あなたの「のPage_Load」メソッドを持っているコードを投稿することができますか? – Reinaldo