web 2.0

How to use ASP & Zip Server.CreateObject(”Pnvzip.ZipFunctions”)

How to use ASP & Zip Server.CreateObject(”Pnvzip.ZipFunctions”) This is tutorial asp developers how to using asp zip file with Pnvzip.ZipFunctions

ShotDev Focus:
- ASP & Zip function

Syntax


Server.CreateObject("Pnvzip.ZipFunctions")

Solution
Error Type:
Server object, ASP 0177 (0×800401F3)
Invalid class string

Solve Problem

Step 1 Download Pnvzip.ZipFunctions

ASP & Zip Pnvzip.ZipFunctions

Copy pnvzip12.dll to C:\Windows\System32

ASP & Zip Pnvzip.ZipFunctions

Install Microsoft VM

ASP & Zip Pnvzip.ZipFunctions

Click Yes

ASP & Zip Pnvzip.ZipFunctions

Click Yes

ASP & Zip Pnvzip.ZipFunctions

Install complete and  click OK.
.
.
.
.

ASP & Zip Pnvzip.ZipFunctions

Register DLL Go to Start -> Run -> regsvr32.exe C:\Windows\System32\pnvzip12.dll

ASP & Zip Pnvzip.ZipFunctions

Register succeeded.

Example

asp_zip_connect.asp


<%Option Explicit%>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Dim objZip
Set objZip = Server.CreateObject("Pnvzip.ZipFunctions")
If IsObject(objZip) Then
Response.write("Pnvzip.ZipFunctions Connected")
Else
Response.write("Can not Connect to Pnvzip.ZipFunctions")
End IF
%>
</body>
</html>

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_zip_connect.asp

Screenshot

ASP & Zip Pnvzip.ZipFunctions
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

One Response to “How to use ASP & Zip Server.CreateObject(”Pnvzip.ZipFunctions”)”

  1. 3pursuant…

Leave a Reply

You must be logged in to post a comment.