Class xbQueryString — encapsulate access to the URL's Query String
extends Class xbObject
class xbQueryString : xbObject { // constructor xbQueryString(); // methods void initForm(HTMLFormElement form); void loadForm(HTMLFormElement form); void reset(); // properties Object value; }
var qs = new xbQueryString(); if (qs.value['message']) alert(qs.value['message']);
xbQueryString is a utility class that is used to parse the querystring passed during a GET.
readonly Object - hash containing the values passed in the query string.
Constructs an instance of the xbQueryString class.
Returns. Nothing
Exceptions
None
Initialize a form from the values in the xbQueryString.
Returns. TypeName description
Exceptions
None
Initialize a xbQueryString from the values in the form.
Returns. TypeName description
Exceptions
None
Remove all values from the xbQueryString.
Returns. TypeName description
Exceptions
None