<%@ 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/thaicreate.zip"), Server.MapPath("MyZip/MyExtract"), "")
End With
Me.lblText.Text = "Zip Extract to folder : MyZip/MyExtract"
End Sub
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Zip Files</title>
</head>
<body>
<form runat="server">
<asp:Label id="lblText" runat="server"></asp:Label><br />
</form>
</body>
</html>