DialogLink Method

HttpServer.dll

A link that pop ups a Dialog (overlay div)

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

Syntax

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

Parameters

url
Type: System..::.String
url to contents of dialog
title
Type: System..::.String
link title
htmlAttributes
Type: array< System..::.String >[]()[]
name/value of html attributes

Return Value

A "a"-tag that popups a dialog when clicked

Examples

WebHelper.DialogLink("/user/show/1", "show user", "onmouseover", "alert('booh!');");

See Also