0

How can I use ionic zip or dotnet zip library in Classic ASP to extract zip file? I am very new in classic asp. So could you please elaborate step wise step. How could it will working in server as well.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
  • Hi, welcome to stack overflow. Please refer the [ask] link for more details on how to ask a question and update your question accordingly. – Jeroen Heier Jan 12 '20 at 08:36

1 Answers1

0

Step 1: Install into the GAC: gacutil -i Ionic.Zip.dll

Step 2: Register for COM use: regasm Ionic.Zip.dll

step 3: make instance of com object in your classic asp code dim zip set zip = CreateObject("Ionic.Zip.ZipFile")

step 4: now use this zip object to complete your task

divyang4481
  • 1,584
  • 16
  • 32