I am not having much luck with this

How do I get the value of a checkbox??

I am trying this:
if( request.getParameter("includeheader") != null && 
request.getParameter("includeheader").equalsIgnoreCase("yes"))

but that is obviously not working for me

I tried this:
for (java.util.Enumeration e = request.getParameterNames() ; e.hasMoreElements() ;) {
         System.out.println(e.nextElement());
     }

and it didnt matter if the check box was selected or not, this did not return a name



I am kinda looking for a quick response

To change your membership options, refer to:
http://www.sys-con.com/java/list.cfm

Reply via email to