テキストボックスからの入力を数値として受け取る必要があります。入力したテキストボックスとデータベース値から取得したデータから製品を作成する必要があります。テキストボックスでキーを押すイベントを実行するにはどうすればよいですか?
SqlConnection objcon = new SqlConnection(conn);
objcon.Open();
string SQL = "select * from Price";
SqlCommand objCommand = new SqlCommand(SQL, objcon);
SqlDataAdapter adapter = new SqlDataAdapter();
DataSet DS = new DataSet();
adapter.SelectCommand = objCommand;
adapter.Fill(DS);
DataTable dt = DS.Tables[0];
DataView dvWindows = new DataView(dt);
dvWindows.RowFilter = "Description = 'Windows'";
foreach (DataRowView rowView in dvWindows)
{
DataRow row = rowView.Row;
decimal d =Convert.ToInt32(txtncores.Text) * (decimal)row["CoreCost"];// txtncores is textbox
txtWindows.Text = d.ToString();// result value to populate in text box
}
助けてください、ちらつきのない同じページの部分的な更新でAjaxを使用する必要がありますか