以下のコードを使用して、動的テキスト ボックスとその onchange イベントを作成しています。イベントは正常に発生しましたが、値が返されません。
txt_box.Attributes.Add("onchange", "loadValues('" + txt_box.ClientID + "')");
function loadValues(controlName) {
alert(controlName);
//control name comes here
var txtValue = document.getElementById(controlName);
//control also return null
if (txtValue.value.length > 0)
{
alert(txtValue.value.length);
}
}