AjaxRequest Method

HttpServer.dll

Requests a url through ajax

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

Syntax

C#
public override string AjaxRequest(
	string url,
	params string[] options
)
Visual Basic (Declaration)
Public Overrides Function AjaxRequest ( _
	url As String, _
	ParamArray options As String() _
) As String
Visual C++
public:
virtual String^ AjaxRequest(
	String^ url, 
	... array<String^>^ options
) override

Parameters

url
Type: System..::.String
url to fetch
options
Type: array< System..::.String >[]()[]
optional options in format "key, value, key, value", used in JS request object.

Return Value

a link tag

Remarks

onclick attribute is used by this method.

See Also