htp.address htp.anchor, htp.anchor2

1-4 Oracle Fusion Middleware PLSQL Web Toolkit Reference htp.cite - generates CITE htp.code - generates CODE htp.dfn - generates DFN htp.get_download_files_list - generate EM htp.fontOpen, htp.fontClose - generate FONT and FONT htp.italic - generates I htp.keyboard, htp.kbd - generate KBD and KBD htp.s - generates S htp.sample - generates SAMP htp.small - generates SMALL htp.strike - generates STRIKE htp.strong - generates STRONG htp.sub - generates SUB htp.sup - generates SUP htp.teletype - generates TT htp.underline - generates U htp.variable - generates VAR Frame Tags htp.frame - generates FRAME htp.framesetOpen, htp.framesetClose - generate FRAMESET and FRAMESET htp.noframesOpen, htp.noframesClose - generate NOFRAMES and NOFRAMES

1.2 htp.address

This generates the ADDRESS and ADDRESS tags, which specify the address, author and signature of a document. Table 1–1 describes the properties of htp.address. The htp and htf Packages 1-5

1.3 htp.anchor, htp.anchor2

These generate the A and A HTML tags, which specify the source or destination of a hypertext link. This tag accepts several attributes, but either HREF or NAME is required. HREF specifies to where to link. NAME allows this tag to be a target of a hypertext link. The difference between these subprograms is that htp.anchor2 provides a target and therefore can be used for a frame. Table 1–2 describes the properties of htp.anchor, htp.anchor2. Table 1–1 htp.address Properties Definitions Syntax: htp.address cvalue in varchar2 cnowrap in varchar2 DEFAULT NULL cclear in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.address cvalue, cnowrap, cclear, cattributes return varchar2; Parameters: cvalue - the string that goes between the ADDRESS and ADDRESS tags. cnowrap - if the value for this parameter is not NULL, the NOWRAP attribute is included in the tag. cclear - the value for the CLEAR attribute. cattributes - other attributes to be included as-is in the tag. Generates: ADDRESS CLEAR=cclear NOWRAP cattributescvalueADDRESS Table 1–2 htp.anchor,htp.anchor2 Properties Definitions Syntax: htp.anchor curl in varchar2 ctext in varchar2 cname in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.anchor curl, ctext, cname, cattributes return varchar2; htp.anchor2 curl in varchar2 ctext in varchar2 cname in varchar2 DEFAULT NULL ctarget in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.anchor2 curl, ctext, cname, ctarget, cattributes return varchar2; Parameters: curl - the value for the HREF attribute. ctext - the string that goes between the A and A tags. cname - the value for the NAME attribute. ctarget - the value for the TARGET attribute. cattributes - other attributes to be included as-is in the tag. Generates: A HREF=curl NAME=cname cattributesctextA A HREF=curl NAME=cname TARGET = ctarget cattributesctextA 1-6 Oracle Fusion Middleware PLSQL Web Toolkit Reference

1.4 htp.appletopen, htp.appletclose