FormExampleHandler Class Reference

Detailed Description

Shows how to call C# directly from your html. This receives an onsubmit call when a form is submitted through onsubmit="FormExampleHandler.OnSubmit". That maps to this class and its OnSubmit method.

Static Public Member Functions

static void OnSubmit (FormData form)
 Called when the form is submitted through onsubmit="FormExampleHandler.OnSubmit". More...
 

Member Function Documentation

static void FormExampleHandler.OnSubmit ( FormData  form)
inlinestatic

Called when the form is submitted through onsubmit="FormExampleHandler.OnSubmit".

Parameters
formA simple object holding the values of all your form inputs by name.