Request Viper Module
Viper Methods
Global Viper Method | Description |
---|---|
Request.Body Viper Method | Returns the http request body as a string |
Request.ClientIP Viper Method | Returns the current client's IP-address. |
Request.Files Viper Method | Gets a datatable with information about the uploaded files.Fields: Key, FileName, ContentType, ContentLength. |
Request.Form Viper Method | Gets an element in the data collection added to the current request.In a Web environment, this will be the posted form data. |
Request.Form.Exists Viper Method | Returns true if the given value exists in the data passed to the request.In a Web environment, this will be the posted form data. |
Request.Form.List Viper Method | Gets all elements in the data collection added to the current request as a datatable.In a Web environment, this will be the posted form data. |
Request.Form.Persistance.Id Viper Method | Gets the post persistance id, auto-generated and used to uniquely identify the Post Persistance data. |
Request.Form.Persistance.IsTransferred Viper Method | Determines whether a Post request was transferred and persistance data is available. |
Request.Form.Persistance.Transfer Viper Method | Persists the form data, redirects to the same page and retrieves the persisted data into the form, masking the GET request as a POST.The persisted form data will only be available directly after the redirect.Throws an exception when the persisted post data is no longer available. |
Request.GetCookie Viper Method | Gets a cookie. |
Request.GetFileData Viper Method | Gets a datatable with all data of an uploaded file.Fields: Key, FileName, ContentType, ContentLength, Bytes. |
Request.GetTimeout Viper Method | Gets the current ASP.NET Request timeout. |
Request.IsAimRequest Viper Method | Gets a value indicating whether the request is an AIM request. |
Request.IsInternal Viper Method | Gets a value indicating whether this request is done internally. |
Request.IsJson Viper Method | Gets a value indicating whether this request is a json request. |
Request.IsLocal Viper Method | Returns true if this client is from the localhost. |
Request.IsPostback Viper Method | Gets a value indicating whether the request is a postback from the same page. |
Request.IsPosted Viper Method | Gets a value indicating whether the request is posted. |
Request.IsPreview Viper Method | Returns true if this request is rendered in preview mode. |
Request.IsReferrerCms Viper Method | Returns true if the current request's referrer is the Cms. |
Request.IsVirtualCmsFile Viper Method | Gets a value indicating whether this request is done by the Smartsite Virtual Path Provider. |
Request.Location Viper Method | Gets the current Url. |
Request.MapParams Viper Method | Unmaps any URL parameters, making parameters available on the querystring only. |
Request.MetaData Viper Method | Gets meta data added to the request.In Http traffic, reflects the HTTP headers added to the request. |
Request.Method Viper Method | Gets the request method used in the current request. |
Request.MimeType Viper Method | Returns the MIME type of the request. |
Request.Query Viper Method | Gets an element added to the Url querystring of the current request. |
Request.Query.exists Viper Method | Returns true if the given Querystring variable exists. |
Request.Query.List Viper Method | Gets the querystring data as a datatable. |
Request.Referrer Viper Method | Returns the current request's referrer address. |
Request.SaveFile Viper Method | Saves an uploaded file to disk. |
Request.SetTimeout Viper Method | Sets the current ASP.NET Request timeout.This overrules the executionTimeout setting of the web.config for the current request.Also sets the default execution timeout for macros on the current page. |
Request.State.Exists Viper Method | Returns true if the given State variable exists. Note: Request.State is a wrapper around the HttpContext.Items collection. |
Request.State.Get Viper Method | Returns the value of the given State variable. Note: Request.State is a wrapper around the HttpContext.Items collection. |
Request.State.Set Viper Method | Sets the value of the given State variable. Note: Request.State is a wrapper around the HttpContext.Items collection. |
Request.Transfer Viper Method | Transfers rendering to the specified item.This method is AIM-aware: the location will be passed to Active Integrity Management. |
Request.UserAgent Viper Method | Returns a simplified user-agent string. |
See Also
-
Request.Body Viper Method
Returns the http request body as a string -
Request.ClientIP Viper Method
Returns the current client's IP-address. -
Request.Files Viper Method
Gets a datatable with information about the uploaded files.Fields: Key, FileName, ContentType, ContentLength. -
Request.Form Viper Method
Gets an element in the data collection added to the current request.In a Web environment, this will be the posted form data. -
Request.Form.Exists Viper Method
Returns true if the given value exists in the data passed to the request.In a Web environment, this will be the posted form data. -
Request.Form.List Viper Method
Gets all elements in the data collection added to the current request as a datatable.In a Web environment, this will be the posted form data. -
Request.Form.Persistance.Id Viper Method
Gets the post persistance id, auto-generated and used to uniquely identify the Post Persistance data. -
Request.Form.Persistance.IsTransferred Viper Method
Determines whether a Post request was transferred and persistance data is available. -
Request.Form.Persistance.Transfer Viper Method
Persists the form data, redirects to the same page and retrieves the persisted data into the form, masking the GET request as a POST.The persisted form data will only be available directly after the redirect.Throws an exception when the persisted post data is no longer available. -
Request.GetCookie Viper Method
Gets a cookie. -
Request.GetFileData Viper Method
Gets a datatable with all data of an uploaded file.Fields: Key, FileName, ContentType, ContentLength, Bytes. -
Request.GetTimeout Viper Method
Gets the current ASP.NET Request timeout. -
Request.IsAimRequest Viper Method
Gets a value indicating whether the request is an AIM request. -
Request.IsInternal Viper Method
Gets a value indicating whether this request is done internally. -
Request.IsJson Viper Method
Gets a value indicating whether this request is a json request. -
Request.IsLocal Viper Method
Returns true if this client is from the localhost. -
Request.IsPostback Viper Method
Gets a value indicating whether the request is a postback from the same page. -
Request.IsPosted Viper Method
Gets a value indicating whether the request is posted. -
Request.IsPreview Viper Method
Returns true if this request is rendered in preview mode. -
Request.IsReferrerCms Viper Method
Returns true if the current request's referrer is the Cms. -
Request.IsVirtualCmsFile Viper Method
Gets a value indicating whether this request is done by the Smartsite Virtual Path Provider. -
Request.Location Viper Method
Gets the current Url. -
Request.MapParams Viper Method
Unmaps any URL parameters, making parameters available on the querystring only. -
Request.MetaData Viper Method
Gets meta data added to the request.In Http traffic, reflects the HTTP headers added to the request. -
Request.Method Viper Method
Gets the request method used in the current request. -
Request.MimeType Viper Method
Returns the MIME type of the request. -
Request.Query Viper Method
Gets an element added to the Url querystring of the current request. -
Request.Query.exists Viper Method
Returns true if the given Querystring variable exists. -
Request.Query.List Viper Method
Gets the querystring data as a datatable. -
Request.Referrer Viper Method
Returns the current request's referrer address. -
Request.SaveFile Viper Method
Saves an uploaded file to disk. -
Request.SetTimeout Viper Method
Sets the current ASP.NET Request timeout.This overrules the executionTimeout setting of the web.config for the current request.Also sets the default execution timeout for macros on the current page. -
Request.State.Exists Viper Method
Returns true if the given State variable exists. Note: Request.State is a wrapper around the HttpContext.Items collection. -
Request.State.Get Viper Method
Returns the value of the given State variable. Note: Request.State is a wrapper around the HttpContext.Items collection. -
Request.State.Set Viper Method
Sets the value of the given State variable. Note: Request.State is a wrapper around the HttpContext.Items collection. -
Request.Transfer Viper Method
Transfers rendering to the specified item.This method is AIM-aware: the location will be passed to Active Integrity Management. -
Request.UserAgent Viper Method
Returns a simplified user-agent string.
- Macro
- Macro Parameters
- Macro Parameter Properties
-
Vipers
-
Global Viper Methods
- AIM Viper Class
- Audit Viper Class
- Buffer Viper Class
- Cache Viper Class
- CacheFile Viper Class
- Calendar Viper Class
- Channel Viper Class
- Char Viper Class
- Cms Viper Class
- ContentType Viper Class
- Convert Viper Class
- Database Viper Class
- DataTable Viper Class
- DateTime Viper Class
- Debug Viper Class
- DigiD Viper Class
- Env Viper Class
- FileSystem Viper Class
- FlexLayout Viper Class
- Html Viper Class
- Html.Color Viper Class
- Html.Css Viper Class
- Image Viper Class
- ImageProperties Viper Class
- ItemComments Viper Class
- ItemData Viper Class
- License Viper Class
- Locale Viper Class
- Logging Viper Class
- Login Viper Class
- Math Viper Class
- Payment Viper Class
- Personalization Viper Class
- PlaceHolder Viper Class
- Poll Viper Class
- Publication Viper Class
- RenderTemplate Viper Class
-
- Request.Body Viper Method
- Request.ClientIP Viper Method
- Request.Files Viper Method
- Request.Form Viper Method
- Request.Form.Exists Viper Method
- Request.Form.List Viper Method
- Request.Form.Persistance.Id Viper Method
- Request.Form.Persistance.IsTransferred Viper Method
- Request.Form.Persistance.Transfer Viper Method
- Request.GetCookie Viper Method
- Request.GetFileData Viper Method
- Request.GetTimeout Viper Method
- Request.IsAimRequest Viper Method
- Request.IsInternal Viper Method
- Request.IsJson Viper Method
- Request.IsLocal Viper Method
- Request.IsPostback Viper Method
- Request.IsPosted Viper Method
- Request.IsPreview Viper Method
- Request.IsReferrerCms Viper Method
- Request.IsVirtualCmsFile Viper Method
- Request.Location Viper Method
- Request.MapParams Viper Method
- Request.MetaData Viper Method
- Request.Method Viper Method
- Request.MimeType Viper Method
- Request.Query Viper Method
- Request.Query.exists Viper Method
- Request.Query.List Viper Method
- Request.Referrer Viper Method
- Request.SaveFile Viper Method
- Request.SetTimeout Viper Method
- Request.State.Exists Viper Method
- Request.State.Get Viper Method
- Request.State.Set Viper Method
- Request.Transfer Viper Method
- Request.UserAgent Viper Method
- Response Viper Class
- Scf Viper Class
- Security Viper Class
- Session Viper Class
- Site Viper Class
- Smartlet Viper Class
- SmartletEditor Viper Class
- SmartletPreset Viper Class
- Smi Viper Class
- SmiData Viper Class
- Spice Viper Class
- Sql Viper Class
- StandardsCompliance Viper Class
- Storage Viper Class
- String Viper Class
- SXML Viper Class
- Sys Viper Class
- Tags Viper Class
- Translation Viper Class
- Url Viper Class
- User Viper Class
- UserItemFeedback Viper Class
- Xml Viper Class
- Local Viper Methods
-
Global Viper Methods
- SXML Data Types
- Examples
- Tips & Tricks