Custom 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 Qualified.Namespace.ClassName in assembly Qualified.dll:
"Qualified.Namespace.ClassName, Qualified"
If the class is automatically compiled because it is in the App_Code folder, don't specify an assembly name, and 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"
|