hi
I have this JSP which populate abt 25 fields from DB. But on certain condition I want 20 fields to be readonly or disable and 5 fields aviable for edit. How can I manage to do this task:
JSP
...
...
if( Level < 3 && pageStatus.equals("Edit"))
{
// ????
}
..
<form......
..
//Fields displayed
..
</form>
thx,
PH
Start Free Trial