FormBox

Contains samples to demonstrate how to use Visual WebGui FormBox control


The FormBox control is used as a way to host a Visual WebGui form inside an ASP.NET application.


Availability:
The FormBox is one of the Out of the Box standard controls, which means it is free and available in all Visual WebGui versions.

The examples below demonstrate how to:
- Use the Stateless property to allow a Visual WebGui form to save its state
- Use the Form property to set the name of form to load
- Use the Arguments property to pass values from ASP.NET page to Visual WebGui form
- Use the Results property to return values from the Visual WebGui form to the hosting ASP.NET page
- Bind custom events and communicate between a hosting ASP.NET and hosted Visual WebGui applications.

The example demonstrates how to get or set a value indicating whether the FormBox is stateless. If so, each refresh would reset the state of the form and its components.
The example demonstrates how to use the FormBox Form property. This property used to reference hosted Visual WebGui form by name.
Example demonstrates how to use Arguments property to pass values from ASP.NET page to Visual WebGui Form..
The example demonstrates how to use FormBox's Results property to return values back to the hosting ASP.NET page.
The example demonstrates how to use both ASP.NET events and Visual WebGui events side by side. And how to link between them.