在用户首次过滤数据表和禁用命令按钮时启用了命令按钮。
我尝试用javascript解决它,但我在写入时在输入中找到了解决方案,但我在过滤时找不到解决方案。
<script type="text/javascript"> function txtkeypress(){
var val1=document.getElementById("prueba").value;
var boton = document.getElementById("InsertarAdmitidos");
if(val1=="") boton.setAttribute("disabled","disabled");
else boton.removeAttribute('disabled')
} </script>