EJSC.AjaxDataHandler.urlData
See Also
|
Definition
string urlData = null
Description
Defines the data to be included for both POST and GET requests. When performing a GET request, this data (if defined) will be appended to the URL before the request is made. For POST requests, this data will be sent as the body of the request.
NOTE: For GET requests you must include the proper syntax for appending the url stored in the url property. Example:
url = "http://localhost/getData" urlData = "?param1=30"
or
url = "http://localhost/getData?param1=30" urlData = "&extra=1" |