<%@ page language="java" import="java.util.*, java.sql.*, java.io.*, mandomartis.*"%> <%@ include file="../include/globals.jsp"%> <% String designtitle="Download your file!"; int lineheight=300; String downloadlink=""; Cookie[] cookies=request.getCookies(); String fromsite=null; if (cookies!=null) { for (int i=0; i0) { StringTokenizer tk=new StringTokenizer(copyto,"; "); while (tk.hasMoreTokens()) { String mailaddress=tk.nextToken(); testsend.setup((String) global.get("smtp") ,(String) global.get("emailuser") ,(String) global.get("emailpassword") ,"support@mandomartis.com" ,"" ,mailaddress ,(String) global.get("systemname")+" Freeware Edition Download!" ,"I downloaded a file! \r\n My IP is : " +request.getHeader("X-FORWARDED-FOR")+"\r\nUser agent: "+request.getHeader("User-Agent")+"\r\nHost: "+request.getHeader("X-Forwarded-Host") +"\r\nI selected the link : "+downloadlink +"\r\nI came from the site : "+decode(fromsite)); testsend.send(); } }*/ %> <%@ include file="../include/design0.jsp"%> Click here to download the file you have selected!

A tip! Note that you can extend your VAC 2 (the application that you use to create applets) with more effects than the ones included by clicking on the "+" (Add More Applets) icon and then selecting "Download" to download more plugins from our Plugin web page. Then use the same button and select "install" to install the plugin zip files you downloaded.

We currently have Free e-mail support for the Freeware Edition, don't hesitate to contact us if you have problems or questions.

<%@ include file="../include/design1.jsp"%> <%! public char x2c(char [] what) { int digit; digit = ((what[0] >= 'A') ? ((what[0] & 0xdf) -'A')+10 : (what[0] - '0')); digit *= 16; digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0')); return (char)digit; } /** * Translates String into x-www-form-urlencoded format. * @param s String to be translated * @return the translated String. */ public String decode(String uri) { boolean badesc = false; boolean badpath = false; String unescaped = ""; String hexstring = null; Character ch; if (uri==null) return null; uri = uri.replace('+',' '); for (int y=0; y < uri.length(); y++) { if (uri.charAt(y) != '%') { unescaped += uri.charAt(y); } else { hexstring = uri.substring(y+1,y+3); y+=2; unescaped += x2c( hexstring.toCharArray() ); } } return unescaped; } %>