RadioButton Method (String, String, Object, Boolean, String[])

HttpServer.dll

Creates a RadioButton.

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

Syntax

C#
public static string RadioButton(
	string name,
	string id,
	Object value,
	bool isSelected,
	params string[] htmlAttributes
)
Visual Basic (Declaration)
Public Shared Function RadioButton ( _
	name As String, _
	id As String, _
	value As Object, _
	isSelected As Boolean, _
	ParamArray htmlAttributes As String() _
) As String
Visual C++
public:
static String^ RadioButton(
	String^ name, 
	String^ id, 
	Object^ value, 
	bool isSelected, 
	... array<String^>^ htmlAttributes
)

Parameters

name
Type: System..::.String
element name
id
Type: System..::.String
element id
value
Type: System..::.Object
element value
isSelected
Type: System..::.Boolean
true if radiobutton is selected
htmlAttributes
Type: array< System..::.String >[]()[]
a list with additional attributes (name, value, name, value).

Return Value

a generated radio button

See Also