Code: Alles auswählen.
<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<%
data: bodyAttributes type ref to cl_bsp_bee_html.
create object bodyAttributes.
bodyAttributes->add( html1 = 'background="backgrd.jpg"' ).
%>
<htmlb:content design="design2003" >
<htmlb:document>
<htmlb:documentHead title="My Title" />
<htmlb:documentBody attributeBee="<%= bodyAttributes %>" >
<htmlb:form>
<htmlb:textView text = "Hello World!"
design = "EMPHASIZED" />
<htmlb:button text = "Press Me"
onClick = "myClickHandler" />
</htmlb:form>
</htmlb:documentBody>
</htmlb:document>
</htmlb:content>