|
ClientSideExtensionsClose(Page, String) Method
|
Closes the current page when it has finished loading in the browser and returns the specified returnValue to the web page that opened it.
Namespace: GSF.Web.UIAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.230-beta
Syntaxpublic static void Close(
this Page page,
string returnValue = null
)
<ExtensionAttribute>
Public Shared Sub Close (
page As Page,
Optional returnValue As String = Nothing
)
public:
[ExtensionAttribute]
static void Close(
Page^ page,
String^ returnValue = nullptr
)
[<ExtensionAttribute>]
static member Close :
page : Page *
?returnValue : string
(* Defaults:
let _returnValue = defaultArg returnValue null
*)
-> unit
GSF.Web.UI.ClientSideExtensions.Close = function(page, returnValue);
View SourceParameters
- page Page
- Page to be closed.
- returnValue String (Optional)
- Value to be returned to the parent web page.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Page. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also