Injects jQuery Mobile script references to the header of the page.

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

Syntax

C#
public static void InjectJQMobileHeaders(
	Page page,
	bool jQueryAjaxEnabled,
	bool hashListeningEnabled,
	bool isAsyncPostBack
)
Visual Basic
Public Shared Sub InjectJQMobileHeaders ( 
	page As Page,
	jQueryAjaxEnabled As Boolean,
	hashListeningEnabled As Boolean,
	isAsyncPostBack As Boolean
)
Visual C++
public:
static void InjectJQMobileHeaders(
	Page^ page, 
	bool jQueryAjaxEnabled, 
	bool hashListeningEnabled, 
	bool isAsyncPostBack
)
F#
static member InjectJQMobileHeaders : 
        page : Page * 
        jQueryAjaxEnabled : bool * 
        hashListeningEnabled : bool * 
        isAsyncPostBack : bool -> unit 

Parameters

page
Type: System.Web.UI..::..Page
Page.
jQueryAjaxEnabled
Type: System..::..Boolean
Property to define if jQuery Ajax is enabled on the page.
hashListeningEnabled
Type: System..::..Boolean
Property to define if jQuery mobile hash listetning is enabled on the page.
isAsyncPostBack
Type: System..::..Boolean
Property that indicates if the page is currently performing the async postback.

See Also