Controls in disabled state
-
In my application,i have many web pages. When certain conditions are met, i want to disable all the controls in the web page. The problem is that when contorls are disabled, it is grayed out and users find difficulty to read the data in controls (textbox, radiobuttonlist, checkboxlist,drop down). Is there any solution to allow controls look as they are enabled even in disabled state. Any help appreciated..............
-
In my application,i have many web pages. When certain conditions are met, i want to disable all the controls in the web page. The problem is that when contorls are disabled, it is grayed out and users find difficulty to read the data in controls (textbox, radiobuttonlist, checkboxlist,drop down). Is there any solution to allow controls look as they are enabled even in disabled state. Any help appreciated..............
Make Control Readonly property =true on page load. Ex txtAddress.ReadOnly=true; on page_load Hope this may help u........... :)
-
Make Control Readonly property =true on page load. Ex txtAddress.ReadOnly=true; on page_load Hope this may help u........... :)
Its ok with textbox but still problem exists with other controls...
-
Its ok with textbox but still problem exists with other controls...
See below link you can make it using a Javascript Link :)