Hello,
I have a page when user submits data, all the textboxes gets disabled, but after clicking Save (saving data). User is retained on that page and edit button comes up.
As on click of Save, all the textboxes were Disabled. Now what i want is when user clicks on Edit button, all the Textboxes are enabled again.
i am using this code (doesnt work)
where ABC is TextBox ID (ASP.Net)
Any help will be appreciated.
Regards
Jay
I have a page when user submits data, all the textboxes gets disabled, but after clicking Save (saving data). User is retained on that page and edit button comes up.
As on click of Save, all the textboxes were Disabled. Now what i want is when user clicks on Edit button, all the Textboxes are enabled again.
i am using this code (doesnt work)
Code:
document.getElementById('<%= ABC.ClientID %>').disable = false;
Any help will be appreciated.
Regards
Jay
Comment