144 IBM WebSphere Commerce Suite V4.1 for OS/390
15.In Page Designer, select the HTML Source tab to view the bean tag
generated by Page Designer. The bean tag should display as follows:
<jsp:useBean class="com.ibm.commerce.beans.ProductBean" id="productBean" scope="request">
<jsp:setProperty property="*" name="productBean" />
<% com.ibm.commerce.beans.DataBeanManager.activate(productBean, request); %></jsp:useBean>
5.4.4 Add dynamic product information
If you are creating a product page template, you will want to add product
information to your page from the Commerce Suite database. Instead of adding
static information, you can add information dynamically using the ProductBean,
which will be updated when your JSP is requested by a browser.
To add dynamic ...