SUBROUTINE LABEL2
INCLUDE #RW.INCLUDE.DEFS FROM /SYSFILES/REALWEB,BP
CALL RW_START_HTML_PAGE("Label example (IE6)", "", "", "", "")
CALL RW_PUT("Please enter your name in the box, then click the Go button")
CALL RW_START_HTML_FORM("HELLO","FORM1","")
txtName = ""
CALL RWA_EDIT_BOX(txtName, "txtName", 30, "ID=txtName")
lblName = ""
CALL RWS_LABEL(lblName, "Name: ", "for=txtName")
CALL RW_PUT(lblName : txtName)
CALL RW_SUBMIT_BUTTON("GO","") ;
CALL RW_END_FORM ;
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>Label example (IE6)</TITLE>
</HEAD>
<BODY>
Please enter your name in the box, then click the Go button
<FORM ACTION="HELLO" NAME="FORM1" METHOD="POST">
<LABEL for=txtName>Name: </LABEL>
<INPUT ID=txtName NAME="txtName" SIZE="30" TYPE="TEXT">
<INPUT TYPE="submit" VALUE="GO">
</FORM>
</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:
|
LABEL2 Example (RealWeb)
|
File name:
|
LABEL2.htm
|