⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fileimport.jsp

📁 国外的一套开源CRM
💻 JSP
字号:
<%@ page import="org.ofbiz.entity.*" %>
<%@ page import="org.ofbiz.entity.model.*" %>
<%@ page import="java.lang.reflect.Method" %>
<%@ page import="java.util.*" %>
<%@ page import="org.ofbiz.entity.util.SequenceUtil" %>
<%@ page import="com.sourcetap.sfa.ui.*" %>

<%@ include file="/includes/header.jsp" %>


<%
   String screen = "";
   String screenSection = "";
   String action = "";
 
   if(request.getParameter("action") != null){
     //actions=search, update, create
     action = request.getParameter("action");
   }
   screen = request.getParameter("screen");
   screenSection = request.getParameter("screenSection");
   
   if ( (screen == null) || (screen.length() < 1) || (screenSection == null) || (screenSection.length() < 1))
   {
%>
<H1>Missing screen and screenSection Info</H1>
<%
   }
   else
   {
%>
	
<table width="100%" height="100%" ><tr><td valign="top">
      <!-- title table -->
      <table width="100%" class="viewManyHeader" cellspacing="0" cellpadding="2"><tr><td>Import <%=screen%></td></tr></table>
      <table width="100%" cellspacing="0" cellpadding="2">
      <form method="post" action="/sfa/control/fileUpload" ENCTYPE="multipart/form-data">
        <input type="hidden" name="screen" value="<%=screen%>">
        <input type="hidden" name="screenSection" value="<%=screenSection%>">
        <input type="hidden" name="action" value="upload">
           <table class=viewOneHeader>
             <tr><td>Step 1. Find the file to upload.</td></tr>
             <tr>
                <td class="viewOneLabel">
                   <input type="file" name="xferFile" size="55">
                </td>
             </tr>
             <tr>
                <td class="viewOneLabel">
                   <input type="submit" value="upload">
                </td>
             </tr>
           </table>
         </form>
       </table>

</td></tr></table>
<%
   }
%>  
<%@ include file="/includes/footer.jsp" %>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -