WMLtags ver. 1.2

    Custom JSP tags library for WAP/WML developers. Library has got two main tags WmlOn and WmlOff. This library lets you combine within one JSP page different parts of code - for normal browser and for WAP browser. With WmlOn tag you can mark part (parts) of your JSP code executed when your page is requested from WAP browser. With WmlOff  tag you can mark part (parts) of your code executed when your page is requested from desktop browser. For example:
 


<%@ taglib uri="taglib.tld" prefix="mobile" %>
<!-- HTML part -->
<mobile:WmlOff>
    <html>
        <%
          out.println("<br> You are using a desktop browser");
        %>
    </html>
</mobile:WmlOff>

<!-- WML part -->
<mobile:WmlOn>
    <wml>
        <card id="test">
            <p>You are using WAP browser</p>
        </card>
    </wml>
</mobile:WmlOn>

for downloading:

Library: wmltags.jar    Description: taglib.tld

 © Coldbeans      Comments?

See also Coldtags suite - the largest collection of custom JSP tags.