SUBROUTINE DEFINITIONLIST3
INCLUDE #RW.INCLUDE.DEFS FROM /SYSFILES/REALWEB,BP
CALL RW_START_HTML_PAGE("Small Glossary", "", "", "", "")
BUF=""
LIST=""
BUF="Cookie"
CALL RWS_DLIST_TERM(BUF,"")
LIST=LIST:BUF
BUF="A small amount of named data stored by the web server and associated " : ...
"with a particular page or web site."
CALL RWS_DLIST_DEF(BUF,"")
LIST=LIST:BUF
BUF="CSS"
CALL RWS_DLIST_TERM(BUF,"")
LIST=LIST:BUF
BUF="Cascading Style Sheet. The preferred method of specifying the appearance " : ...
"of a web page."
CALL RWS_DLIST_DEF(BUF,"")
LIST=LIST:BUF
BUF="Servlet"
CALL RWS_DLIST_TERM(BUF,"")
LIST=LIST:BUF
BUF="A server-side Java program that services HTTP requests and returns HTTP responses."
CALL RWS_DLIST_DEF(BUF,"")
LIST=LIST:BUF
CALL RWS_DLIST(LIST,"")
CALL RW_PUT(LIST)
CALL RW_END_PAGE
RETURN
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<META NAME="Generator" CONTENT="Reality">
<TITLE>Small Glossary</TITLE>
</HEAD>
<BODY>
<DL>
<DT>
Cookie
</DT>
<DD>
A small amount of named data stored by the web server and associated with
a particular page or web site.
</DD>
<DT>
CSS
</DT>
<DD>
Cascading Style Sheet. The preferred method of specifying the appearance
of a web page.
</DD>
<DT>
Servlet
</DT>
<DD>
A server-side Java program that services HTTP requests and returns HTTP
responses.
</DD>
</DL>
</BODY>
</HTML>
NEC welcomes your feedback on our documentation.
If you have any comments about the current Reality Help, or want something to be added in a future revision, please contact your NEC Helpdesk.
If your comment relates to this particular Help topic, remember to include the following information:
Product:
|
RealityVersion 15.5
|
Help revision:
|
Revision 0
|
Help topic:
|
Definition List Strings Example (RealWeb)
|
File name:
|
DLIST3.htm
|