system1为用户注册模块 system2为在线聊天系统 system3为在线投票系统 system4为在线考试系统 system5为新闻发布模块

源代码在线查看: modifyuser.jsp~26~

软件大小: 8017 K
上传用户: hxyw
关键词: system1 system2 system3 system4
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				
				
				
				
				
				
				
				  function CheckInput()
				  {
				    if(myform.Username.value=="")
				    {
				      alert("用户名输入不能为空!")
				      myform.Username.focus();
				      return false;
				    }
				    if(myform.Email.value=="")
				    {
				      alert("密码不能为空!")
				      myform.Password.focus();
				      return false;
				    }
				  }
				 
				
				 				      String UserName = (String) session.getAttribute("s_username");
				      String Email = request.getParameter("Email");
				      String QuestionReply = request.getParameter("Reply");
				      String Question = request.getParameter("Question");
				      ResultSet rs=null;
				
				   if(Email!=null)
				   {
				   String sql = "update UserInfo set Email='"+Email+"' ,Reply='"+QuestionReply+"' , Question ='"+Question+"' where UserName='"+UserName+"'";
				   db.executeUpdate(sql);
				%>
				   
				    alert("用户资料修改成功!");
				    
								   }
				%>
				
				
				  
				用户注册
				
				
				
				  
				  
				    
				       用户注册 
				    
				    
				      用户名
				      
				        
				        * 
				    
				    
				      电子邮件
				       
				        
				        * 
				    
				    
				      问题
				       
				        
				          你最爱的宠物
				          你最爱的老师的名字
				          你最喜欢的品牌
				        
				        
				    
				    
				      回答
				       
				        
				        
				    
				    
				       
				        
				        
				       
				        
				        
				    
				  
				
				
				
				
				
							

相关资源