Deletes an address book entry. If an error occurs during processing, the tag body will be evaluated and the remainder of the page will be skipped.
JSP
n/a
n/a
This tag has a single attribute for which the value of Required field is Yes:
The id of an entry bean within the entries collection.
n/a
<%@ page errorPage="/jsp/errorpage.jsp" %> <%@ taglib uri="/taglibs/ips_taglib_ab.jar" prefix="ab" %> <ab:context/> <ab:delete entryid="$(entryid)"> Problem deleting Entry </ab:delete> Entry deleted successfully <ab:fetch> Error in Looking up address book. </ab:fetch> Number of Address Book entries: <ab:context> <ab:get property="numEntries"/> </ab:context> <ab:entries> <ab:entry> Entry Id: <ab:get property="entryid"/> First Name: <ab:get property="fn"/> Last Name: <ab:get property="ln"/> Email: <ab:get property="em"/> </ab:entry> </ab:entries>