J
Juno
Hi Rea,
You can reference a controls like document.all("'ctrlName'").Usually ,the
ctrlName is the same as the id of that asp control, but in some situation,
it may be changed to control's unique ID.
And at client side, enable property of control does not exists, you should
access disabled property,like document.all.ctrlName.disalbed = false.
You can reference a controls like document.all("'ctrlName'").Usually ,the
ctrlName is the same as the id of that asp control, but in some situation,
it may be changed to control's unique ID.
And at client side, enable property of control does not exists, you should
access disabled property,like document.all.ctrlName.disalbed = false.