To work around this - set Disabled or ReadOnly from the client JavaScript when the page loads.
e.g.
function ExecuteOnLoad()
{
document.getElementById("txtInput").readOnly = true;
document.getElementById("txtOutput").disabled = true;
}
Prof. Tech. Blog.
function ExecuteOnLoad()
{
document.getElementById("txtInput").readOnly = true;
document.getElementById("txtOutput").disabled = true;
}
1 comment:
Another workaround is to simulate "readonly" behavior: http://codecorner.galanter.net/2009/10/09/postback-disabled-textbox/
Post a Comment