Code Comments
Programming Forum and web based access to our favorite programming groups.Is there a native 'zipping' or compression compoonent in windows accessable via ASP? Or do you have to buy a compoonent?
Post Follow-up to this messageNo, there is nothing native in 'classic' ASP. Third-party it is. -- Jason Brown Microsoft GTSC, IIS This posting is provided "AS IS" with no warranties, and confers no rights. "Beau" <beau_damore@hotmail.com> wrote in message news:u8Q4ebV6EHA.2624@TK2MSFTNGP11.phx.gbl... > Is there a native 'zipping' or compression compoonent in windows > accessable > via ASP? Or do you have to buy a compoonent? > >
Post Follow-up to this messageAs Jason said, no, there is nothing built in. You can purchase the Winzip command line add-on (http://www.winzip.com/downcl.htm) for Winzip (http://www.winzip.com/), "shell out" and execute the commands for the command line add-on to zip files. <% sCommand = "wzzip D:\Inetpub\wwwroot\test\htmlfiles.zip D:\Inetpub\wwwroot\test\*.htm" Set oShell = CreateObject("WScript.Shell") oShell.Run sCommand, , True Set oShell = Nothing Response.Write "<a href=""htmlfiles.zip"">Download zip file</a>" %> Ray at home "Beau" <beau_damore@hotmail.com> wrote in message news:u8Q4ebV6EHA.2624@TK2MSFTNGP11.phx.gbl... > Is there a native 'zipping' or compression compoonent in windows > accessable > via ASP? Or do you have to buy a compoonent? > >
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.