BuildLink Method (String, String, String[])

HttpServer.dll

Build a link

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

Syntax

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

Parameters

url
Type: System..::.String
url to go to.
title
Type: System..::.String
title of link (displayed text)
htmlAttributes
Type: array< System..::.String >[]()[]
extra html attributes.

Return Value

a complete link

See Also