so the short of the code is this
bool editable;
pageload()
{
if (!ispostback)
{
editable = false;
aspTextbox.enable = editable;
}
}
buttonclick()
{
editable = true;
aspTextbox.enable = editable;
}
But explicitly setting the editable variable to true or setting it in the even handler for the button click neither of them are enabling the box. Is there another property used for this. or am i just missing something.
Thanks for comments and help. If you need more information just let me know in comments.