diff options
Diffstat (limited to 'swat/esptest/exception.esp')
-rw-r--r-- | swat/esptest/exception.esp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/swat/esptest/exception.esp b/swat/esptest/exception.esp index cfd0f312fa..986b616dab 100644 --- a/swat/esptest/exception.esp +++ b/swat/esptest/exception.esp @@ -2,12 +2,14 @@ <h1>Samba4 exception test</h1> -<form name="ExceptionTest" method="POST" action="@@request['SCRIPT_NAME']"> - <input name="submit" type="submit" value="Generate Exception"> - <input name="submit" type="submit" value="No Exception"> -</form> <% +var f = Form("ExceptionTest", 0, 2); +f.submit[0] = "Generate Exception"; +f.submit[1] = "No Exception"; + +display_form(f); + if (request['REQUEST_METHOD'] == "POST") { function TestFunction(arg1, arg2) { return "OK"; |