I am using Apache Commons FileUpload and I am trying to to determine if it is multipart.
I am using netbeans and netbeans has crossed out the isMultipartContent, meaning it is deprecated. I pressed CTRL-SPACE and javadocs shows another method:
public static final boolean isMultipartContent(RequestContext ctx)
How should I use RequestContext in my JSP file? What should I enter as the argument for isMultipartContent?