Total is a variable. It holds the result of a multiplicattion. Hence you can't have Total.value. So, it should be like:
Total = Qty.value * Price.value;
document.getElementById('" & txtTotal.ClientID & "').value = Total;
And replace Total.value with Total inside the alert too.