该系统是一个B/S结构的公司定饭系统,整套软件由JSP编制,希望大家能够多提宝贵意见,但请不要将它应用于商业环境,如实在要使用的话,请与作者联系!(使用此系统无比要有ORACLE8i以上版本数据库!)

源代码在线查看: order_1_3.jsp

软件大小: 64 K
上传用户: sgly2002
关键词: ORACLE8i JSP
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				
								if (session.getAttribute("grade")==null || !(session.getAttribute("grade").toString().equals("6")))
				{
				%>
				      
				      
				      
				     
								}
				%>
				
				
				创建工作组
				
				
				
								td {  font-size: 14px; text-align: center}
				-->
				
				
				
								function do_del()
				{
				  return confirm("当前数据库中所有关于此工作组的信息都将删除,确定吗?!");
				}
				function go_page()
				{
				  window.location.replace('order_supad.jsp');
				}
				function confirm_all()
				{
				  GxTrimStr(document.fo_main.tx_group);
				  if (GxIsEmpty(document.fo_main.tx_group))
				  {
				    document.fo_main.tx_group.select();
				    alert("请输入工作组名!");
				    return false;
				  }
				return true;
				}
				-->
				
				
				
				
				--- 创 建 工 作 组--- 
				
				  
				    
				      
				        工作组名:
				        
				          
				        
				      
				      
				        
				          
				            
				               
				            
				          
				        
				      
				    
				  
				  
				  注意:下面已经存在的工作组名,不可以再次添加! 
				  
								  Vector Result=new Vector();
				  try{
				  DB.connect();
				  Result=DB.select("SELECT * FROM all_group order by cp_groupid");
				  DB.close();
				  }
				  catch(DBException  e)
				{
				%>
				      
				      
				      
				      
								}
				
				  out.print("---工作组一览---");
				  if (Result.size()==0)
				  {
				    out.print("当前数据库中尚没有工作组记录,您可以在上面添加!");
				  }
				  else
				  {
				    out.print("工作组号:工作组名: ");
				    int i;
				    for (i=0;i				    {
				      String tempstr=Result.elementAt(i).toString();
				      out.print(""+Result.elementAt(i++).toString()+""+Result.elementAt(i).toString()+"删 除");
				    }
				  }
				%>
				
				
				
				
							

相关资源