what is the code to disable an INPUT text box for HTML?
Thanks
You can Use both disabled or readonly attribute of input . Using disable attribute will omit that value at form submit, so if you want that values at submit event make them readonly instead of disable.
or