Gets or sets the value that specifies pages, requests to which should be processed by EAUpload component.
Namespace:
EasyAlgo.EAUploadAssembly: EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0
Syntax
| C# |
|---|
public string ProcessPages { get; set; } |
| Visual Basic (Declaration) |
|---|
Public Property ProcessPages As String |
Field Value
Type: System..::.StringA String that specifies pages, requests to which should be processed by EAUpload component.
Use comma ',' to delimit different values.
Possible values:
- "" or "*". All requests to all pages should be parsed.
- Regular expressions (ex: "*.aspx,*.ashx")
Remarks
This property is a reflection of EAUpload configuration parameter (<EasyAlgo.EAUpload>/<Environment ... ProcessPages="" ... >).
By defining this property you can combine usage of EAUpload component with other components that process requests with "multipart/form-data" content type (ASP.NET buit-in System.Web..::.HttpPostedFile class).
Note:If you want to change this property at the runtime, you should define it at the Initializing stage of an upload (see EasyAlgo.EAUpload..::.UploadState for more information). All changes for processing uploads will be ignored.
Also if you have changed this property for the whole of EAUpload component (EAUploadModule..::.CommonEnvironment property) then new value will be used for the new uploads only.
By defining this property you can combine usage of EAUpload component with other components that process requests with "multipart/form-data" content type (ASP.NET buit-in System.Web..::.HttpPostedFile class).
Examples
You can find an example in the description of UploadEnvironment class.
