javascript/aspで2つのテキストボックス値を追加して3番目に表示するにはどうすればよいですか? 私のコードは以下です
function fill() {
var txt8 = document.getElementById("TextBox8").value;
var txt9 = document.getElementById("TextBox9").value;
document.getElementById("TextBox10").value = txt8 + txt9;
}
TextBox8 と TextBox9 の両方に onchange="fill" があります