|
<html>
<head>
<title>Helper Table Form Example part 2</title>
</head>
<body>
It is now <%= [ns_fmttime [ns_time] "%A, %B %e, %Y at %r" ] %><p><hr><p>
<h2>Data passed from helper-1.adp</h2>
<%
set_the_usual_form_variables 0
# should create course, QQcourse
if { ![info exists course] } {
ns_adp_puts "No value was selected, so no variable was passed!<br>"
} else {
ns_adp_puts "course='$course'<p>
Note that only the course number was passed, not the course title."
}
%>
<p><hr>
<a href="helper-1.adp">helper-1.adp</a> <a href="index.htm">/tech Home Page</a>
</body></html>
|