| 
            
              ClientSideExtensionsRefresh(Page, Boolean) Method
             | 
          
        
        
            Registers this page to perform a page refresh.
            
        
        Namespace: GSF.Web.UIAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.258-beta
Syntaxpublic static void Refresh(
	this Page page,
	bool refreshOnLoad = false
)
<ExtensionAttribute>
Public Shared Sub Refresh ( 
	page As Page,
	Optional refreshOnLoad As Boolean = false
)
public:
[ExtensionAttribute]
static void Refresh(
	Page^ page, 
	bool refreshOnLoad = false
)
[<ExtensionAttribute>]
static member Refresh : 
        page : Page * 
        ?refreshOnLoad : bool 
(* Defaults:
        let _refreshOnLoad = defaultArg refreshOnLoad false
*)
-> unit GSF.Web.UI.ClientSideExtensions.Refresh = function(page, refreshOnLoad);
 View SourceParameters
- page  Page
 - Page to refresh.
 - refreshOnLoad  Boolean  (Optional)
 - Refreshes the page after the page content has loaded.
 
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