summaryrefslogtreecommitdiff
path: root/swat/esptest/formtest.esp
blob: 2d3693355cc124fdcb0e8800c257197cf2dbe538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<% page_header("columns", "ESP Form Test"); %>

<%
var f = Form("FormTest", 2, 2);
f.element[0].label = "First Name";
f.element[0].name  = "firstName";
f.element[1].label = "Last Name";
f.element[1].name  = "lastName";
f.submit[0] = "OK";
f.submit[1] = "Cancel";

display_form(f);

<%
  /* if its a post then the user has filled in the form, so
     report the values 
  */
  if (form['OK']) {
%>
  You chose firstName=@@form['firstName'] lastName=@@form['lastName']<p>
  
<%
   simple_table(form);
  }
%>

<% page_footer(); %>