Method | Description | |
---|---|---|
CookieExists ( System request, string cookieName ) : bool |
Determines whther a cookie exists or not.
|
|
CookieExists ( string cookieName ) : bool |
Determines whther a cookie exists or not.
|
|
CreateJsonIdArray ( |
Insert a script block which creates a JSON object with an array of client control ID names for all server-side controls. This allows access to the objects using javascript. It is best used in the Page_PreRender block.
|
|
CreateJsonIdArray ( |
Insert a script block which creates a JSON object with an array of client control ID names for all server-side controls. This allows access to the objects using javascript. It is best used in the Page_PreRender block.
|
|
GetCookie ( System request, string cookieName ) : String |
Returns a specified cookie from a specified request object.
|
|
GetCookie ( string cookieName ) : String |
Returns a specified cookie from the current request object.
|
|
RemoveCookie ( String cookieName ) : void |
Remove a cookie from the client web browser.
|
|
RemoveCookie ( String cookieName, String path ) : void |
Remove a cookie from the client web browser.
|
|
RemoveCookie ( String cookieName, String path, String domain ) : void |
Remove a cookie from the client web browser.
|
|
SetCookie ( String cookieName, String cookieValue, String path, |
Create a cookie on the client web browser.
|
|
SetCookie ( String cookieName, String cookieValue, String path, |
Create a cookie on the client web browser.
|
Method | Description | |
---|---|---|
H3ClientSide ( ) : System | ||
en ( |
public static CookieExists ( System request, string cookieName ) : bool | ||
request | System | HttpRequest object. |
cookieName | string | Name of cookie for which to verify its existence. |
return | bool |
public static CookieExists ( string cookieName ) : bool | ||
cookieName | string | Name of cookie for which to verify its existence. |
return | bool |
public static CreateJsonIdArray ( |
||
pageObject | The Page object. | |
containerControl | The container for which all children should be used. | |
objectName | string | Name for the object with the array of names. |
mode | JsonObjectMode | JsonObjectMode enumeration which specifies how page /// objects are to be identified; by ID or CSS class name. |
return | void |
public static CreateJsonIdArray ( |
||
page | The Page object. | |
objectName | string | Name for the object with the array of names. |
mode | JsonObjectMode | JsonObjectMode enumeration which specifies how page /// objects are to be identified; by ID or CSS class name. |
return | void |
public static GetCookie ( System request, string cookieName ) : String | ||
request | System | HttpRequest object. |
cookieName | string | Name of cookie to retrieve. |
return | String |
public static GetCookie ( string cookieName ) : String | ||
cookieName | string | Name of cookie to retrieve. |
return | String |
public static RemoveCookie ( String cookieName ) : void | ||
cookieName | String | Name of the cookie to remove. |
return | void |
public static RemoveCookie ( String cookieName, String path ) : void | ||
cookieName | String | Name of the cookie to remove. |
path | String | Virtual web path for cookie ownership (e.g. use "/" for the root web site). |
return | void |
public static RemoveCookie ( String cookieName, String path, String domain ) : void | ||
cookieName | String | Name of the cookie to remove. |
path | String | Virtual web path for cookie ownership (e.g. use "/" for the root web site). |
domain | String | Domain which owns the cookie (e.g. ".mydomain.com") or "" for the current domain. |
return | void |
public static SetCookie ( String cookieName, String cookieValue, String path, |
||
cookieName | String | Name of the cookie to create. |
cookieValue | String | Cookie string value. |
path | String | Virtual web path for cookie ownership (e.g. use "" for the root domain). |
days | Number of days until expiration. | |
return | void |
public static SetCookie ( String cookieName, String cookieValue, String path, |
||
cookieName | String | Name of the cookie to create. |
cookieValue | String | Cookie string value. |
path | String | Virtual web path for cookie ownership (e.g. use "" for the root domain). |
days | Number of days until expiration. | |
domain | String | Domain for this cookie (e.g. use ".mydomain.com" format to save cookie for all subdomains) |
return | void |