![Home](images/home.gif)
![Faq](images/faq.gif)
![Download](images/download.gif)
![production.gif (1614 bytes)](images/production.gif)
![Support](images/support.gif)
![Feedback](images/feedback.gif)
![Cool](images/cool.gif)
|
Example 1:
Template: File: templ.txt |
<HTML> |
<BODY> |
<input type="text" name="TextBox"> |
</BODY> |
</HTML> |
|
Program: |
template = TemplateLoader.getTemplate("templ") |
contol = template.getControl("TextBox") |
control.setValue("Hello") |
template.outputToBrowser( out ) |
|
Browser: |
<HTML> |
<BODY> |
<input type="text" name="TextBox"
value="Hello"> |
</BODY> |
</HTML> |
|
As you can see in this case template is a pure HTML page. Later in documentation we
will have better understanding of all objects and properties.
![WB00774_.gif (1029 bytes)](images/devider.gif)
![Next](images/next.gif)
|
|