Edit C:\galaxie\Back\galaxie\siteweb\newsletter\login.jsp
<% /****************************************************************************** * Copyright (c) 2000-2004 e-Deal * * e-Deal S.A. * 55 rue Brillat Savarin * 75013 Paris * France * * T: +33 (0)1 53 80 80 30 * F: +33 (0)1 73 01 69 77 * http://www.e-deal.com * * La diffusion de ce code source sous quelque forme que ce soit sans * l'autorisation de E-DEAL est interdite. * * Vous êtes autorisés à modifier ce code source uniquement pour votre usage * propre et sous réserve que les mentions de copyright demeurent intactes. * * Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou * implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour * responsable des dommages pouvant résulter de l'utilisation de ce code * source. * * ******************************************************************************/ %><%@page session="true" import="com.edeal.frontline.*, java.util.*"%> <%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %><% final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass()); String contextPath = (String)session.getAttribute("contextPath"); if(contextPath == null) { contextPath = request.getContextPath(); } FlContext context = Frontline.getContext(contextPath); String pMail = Utils.getRequestParameter(context, request, "mail"); String id = null; String typ = null; if(pMail != null) { String[] fields = {"PerID"}; String[][] query = {{"PerMail = " + Utils.formatToSQL(context, pMail)}}; String[] orderBy = {"PerUpd DESC"}; Vector vectID = PersonBean.listSummary(context, fields, query, orderBy, 0, 1); if(vectID != null && vectID.size() > 0) { id = (String)((Hashtable)vectID.firstElement()).get("PerID"); typ = "Person"; } else { fields[0] = "SilID"; query[0][0] = "SilMail = " + Utils.formatToSQL(context, pMail); orderBy[0] = "SilUpd DESC"; vectID = SilhouetteBean.listSummary(context, fields, query, orderBy, 0, 1); if(vectID != null && vectID.size() > 0) { id = (String)((Hashtable)vectID.firstElement()).get("SilID"); } typ = "Silhouette"; } Utils.forward(request, response, "/load?op=edit&typ=" + typ + (id == null ? "" : "&id=" + id) + "&disp=/SiteWeb/newsletter/update.jsp"); } %> <html> <head> <title><fl:getMessage code="L2025" alt="E-DEAL"/></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form action="<fl:webapp/>/SiteWeb/newsletter/login.jsp" method="post" onSubmit="return this.mail.value != '';"> <center> <table border="0" cellpadding="1" cellspacing="0"> <tr valign="top"> <td bgcolor="black"> <table border="0" cellpadding="3" cellspacing="0" bgcolor="white"> <tr valign="top"> <td>Veuillez saisir votre e-mail</td> </tr> <tr valign="top"> <td><input name="mail" type="text" value=""></td> </tr> </table> </td> </tr> </table> </center> </form> </body> </html> <% /****************************************************************************** * CVS Log File - This is no longer maintained! * * Revision 1.1 2004/07/23 18:20:56 brian * Initial Revision * *****************************************************************************/ %>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de