SlickUpload

Class reference syntax

In many places in SlickUpload, you can specify a class reference to produce custom behavior. SlickUpload uses the standard .NET assembly/class reference syntax, which is "Fully Qualified Class Name, Assembly Name".

Here is an example of referencing the class Namespace.ClassName in the assembly Assembly.dll:

"Namespace.ClassName, Assembly"

If the class is automatically compiled because it is in the App_Code folder, don't specify an assembly name – SlickUpload will automatically assume that you are pointing to a class in the App_Code folder. Here is an example for the class ClassName in the App_Code folder:

"ClassName"