You want your page to "do some steps" and then on some condition, disable
it...
Is the "do some steps" stuff when the page loads? In which case you can tie
the "do some steps" code to the body.onload event, and have it call
disable( ) if need be.
Does that help?
Kevin
"Chris" <ch***********@gmail.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
I have an asp.net page say page1.aspx. The form in html code is <form
id = "Form1">
And i want to disable all the fields of the form after some code steps.
I had created a javascript funct:
function disable()
{
alert("Forms length is :" + Form1.length);
for (i = 0; i < Form1.length; i++) {
var formElement = Form1.elements[i];
if (true) {
formElement.disabled = true;
}
}
}
And it can be invoked in events like 'onClick'..
As i need to call it from my asp.net code, I can use
button1.attributes.add("onClick","disable()")
But i dont want to call it on event, in fact i want my page to do some
steps and then on some condition, disable it.
Ne other suggestions are also welcomed!!
TIA,