Gets or sets the value that specifies pages, requests to which should be ignored by EAUpload component.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0

Syntax

C#
public string IgnorePages { get; set; }
Visual Basic (Declaration)
Public Property IgnorePages As String

Field Value

Type: System..::.String
A String that specifies pages requests to which should be ignored by EAUpload component.
Use comma ',' to delimit different values.

Possible values:
  • "" or "*". All requests to all pages should not be parsed.
  • Regular expressions (ex: "*.aspx,*.ashx")

Remarks

This property is a reflection of EAUpload configuration parameter (<EasyAlgo.EAUpload>/<Environment ... IgnorePages="" ... >).
By defining this property you can combine usage of EAUpload component with other components which process requests with "multipart/form-data" content type (ASP.NET buit-in System.Web..::.HttpPostedFile class).

Value of this property has a priority at the value of ProcessPages property. So, if you specify the same page as in ProcessPages as in IgnorePages then this page will not be processed.

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.

See Also