AjaxUpdater Method

HttpServer.dll

Builds a link that updates an element with the fetched ajax 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 title,
	string targetId,
	params string[] options
)
Visual Basic (Declaration)
Public Shared Function AjaxUpdater ( _
	url As String, _
	title As String, _
	targetId As String, _
	ParamArray options As String() _
) As String
Visual C++
public:
static String^ AjaxUpdater(
	String^ url, 
	String^ title, 
	String^ targetId, 
	... array<String^>^ options
)

Parameters

url
Type: System..::.String
Url to fetch content from
title
Type: System..::.String
link title
targetId
Type: System..::.String
html element to update with the results of the ajax request.
options
Type: array< System..::.String >[]()[]
optional options in format "key, value, key, value"

Return Value

A link tag.

See Also