Modificare il file:
\iwgallery\admin\inc_zip_content.asp
<% If LCase(Request.Cookies("IWGalleryAccess")) <> "amministratore" Then Response.Redirect("logout.asp?reason=Accesso negato") %> <% Dim objZip, objItem Set objZip = Server.CreateObject("XStandard.Zip") %> <table width="100%" border="0" cellpadding="0" cellspacing="0" class="box"> <tr> <td align="left" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="1" align="left" class="box-header"><img src="../themes/<%= strTheme %>/box-header-left.jpg"></td> <td width="100%" class="box-header"><%= Request.QueryString("file") %></td> <td width="1" align="right" class="box-header"><img src="../themes/<%= strTheme %>/box-header-right.jpg"></td> </tr> </table></td> </tr> <tr> <td align="left" valign="top" class="box-main"> <table width="100%" border="0" cellspacing="1" cellpadding="0" class="grid"> <tr class="grid-header"> <td>Contenuto: <span class="evidence"><%= objZip.Contents(Server.MapPath(strPublicPath & "/zip/" & Request.QueryString("file"))).Count %></span> files</td> </tr> <% For Each objItem In objZip.Contents(Server.MapPath(strPublicPath & "/zip/" & Request.QueryString("file")))%> <tr class="grid-main" onMouseOver="this.className='grid-over'" onMouseOut="this.className='grid-main'"> <td><% Response.Write objItem.Path & objItem.Name %></td> </tr> <% Next %> </table></td> </tr> <tr> <td align="left" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="1" align="left" class="box-bottom"><img src="../themes/<%= strTheme %>/box-bottom-left.jpg"></td> <td width="100%" class="box-bottom"><img src="../images/shim.gif" width="1" height="1"></td> <td width="1" align="right" class="box-bottom"><img src="../themes/<%= strTheme %>/box-bottom-right.jpg"></td> </tr> </table></td> </tr> </table> <% Set objZip = Nothing Set objItem = Nothing %>
[
Íàçàä
]