







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 static string DialogLink( string url, string title, params string[] htmlAttributes ) |
Visual Basic (Declaration) |
---|
Public Shared Function DialogLink ( _ url As String, _ title As String, _ ParamArray htmlAttributes As String() _ ) As String |
Visual C++ |
---|
public: static String^ DialogLink( String^ url, String^ title, ... array<String^>^ htmlAttributes ) |
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!');");