Hello Everyone.
In ASP.Net two of the possible ways to make the zip files are
How can i use any of these in Classic ASP to make the zip files ? And which one will be better ?
Hello Everyone.
In ASP.Net two of the possible ways to make the zip files are
How can i use any of these in Classic ASP to make the zip files ? And which one will be better ?
You can't use any of those libraries in classic asp. One way would be to try to register them as COM components using the regasm.exe utility, although I am not sure whether those assemblies are marked with the COMVisible attribute.
You will need to create a COM wrapper for the .NET library of choice.
You will then be able to reference the wrapper in classic ASP and use it.