Yes, heres how my code looks:
RadioButton upload = new RadioButton("LOAD_OPTION", "UPLOAD", true);
RadioButton update = new RadioButton("LOAD_OPTION", "UPDATE", true);
upload.setChecked(true);
On the server side (servlet), I print request values and all I get is
"ON" for "LOAD_OPTION" parameter. I expect to see either "UPLOAD" or
"UPDATE".
What am I missing here ?