A developer wants to make use of a pre-existing tag library located at:
http://www.mycorp/super
The tag that will be used in the JSP will appear as:
<super:doCount>
What directive must appear in the JSP in order to use the tag library?
A.
<%@ taglib uri=”super” prefix=” http://www.mycorp/super” />
B.
<%@ taglib uri=”http://www.mycorp/super” prefix=”doCount” />
C.
<%@ taglib uri=”http://www.mycorp/super” prefix=”super” />
D.
<%@ taglib uri=”super” prefix=”doCount” />