AjaxUpdater Method

HttpServer.dll

Ajax requests that updates an element with the fetched content

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

Syntax

C#
public static string AjaxUpdater(
	string url,
	string targetId,
	params string[] options
)
Visual Basic (Declaration)
Public Shared Function AjaxUpdater ( _
	url As String, _
	targetId As String, _
	ParamArray options As String() _
) As String
Visual C++
public:
static String^ AjaxUpdater(
	String^ url, 
	String^ targetId, 
	... array<String^>^ options
)

Parameters

url
Type: System..::.String
Url to fetch content from
targetId
Type: System..::.String
element to update
options
Type: array< System..::.String >[]()[]
options in format "key, value, key, value"

Return Value

A link tag.

See Also