ASP.NET(vb.net) & UnzipFile/Extract Zip file - This article how to example scripts ASP.NET Unzip File/Extract Zip file
ShotDev Focus:
- ASP.NET(vb.net) & UnzipFile/Extract Zip file
Example
AspNetExtractZip.aspx
<%@ Import Namespace="ICSharpCode.SharpZipLib.Zip"%> <%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim MyZip As New FastZip With MyZip .ExtractZip(Server.MapPath("MyZip/shotdev.zip"), Server.MapPath("MyZip/MyExtract"), "") End With Me.lblText.Text = "Zip Extract to folder : MyZip/MyExtract" End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot