ObjectForm Constructor (String, String, Object)

HttpServer.dll

Initializes a new instance of the ObjectForm class.

Namespace:  HttpServer.Helpers
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public ObjectForm(
	string action,
	string name,
	Object obj
)
Visual Basic (Declaration)
Public Sub New ( _
	action As String, _
	name As String, _
	obj As Object _
)
Visual C++
public:
ObjectForm(
	String^ action, 
	String^ name, 
	Object^ obj
)

Parameters

action
Type: System..::.String
action to do when form is posted.
name
Type: System..::.String
form name *and* id.
obj
Type: System..::.Object
object to get values from

See Also