Builds the URL for the UI popup window.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string BuildEditSourceUrl(
	string path,
	Page page,
	bool jsEncode = false
)
Visual Basic
Public Shared Function BuildEditSourceUrl ( 
	path As String,
	page As Page,
	Optional jsEncode As Boolean = false
) As String
Visual C++
public:
static String^ BuildEditSourceUrl(
	String^ path, 
	Page^ page, 
	bool jsEncode = false
)
F#
static member BuildEditSourceUrl : 
        path : string * 
        page : Page * 
        ?jsEncode : bool 
(* Defaults:
        let _jsEncode = defaultArg jsEncode false
*)
-> string 

Parameters

path
Type: System..::..String
Control's path.
page
Type: System.Web.UI..::..Page
Page which holds the control.
jsEncode (Optional)
Type: System..::..Boolean

Return Value

Type: String
Full edit URL.

Return Value

Type: String

See Also