用纯ASP代码实现图片上传并存入数据库中

源代码在线查看: 用javascript和dhtml实现两个列表框中内容的移动.txt

软件大小: 414 K
上传用户: zbcs1025
关键词: 代码 数据库
下载地址: 免注册下载 普通下载 VIP

相关代码

				有趣并且实用的程序--利用javascript和dhtml实现两个列表框中内容的移动。(代码见内,把它存为一个html文件即可执行)    
				
				
				--------------------------------------------------------------------------------
				
				 【bigeagle】 于 2000-07-23 17:51:48 加贴在 Joy ASP ↑:
				
				
				
				   
				     
				         列表一
				     
				     
				         操作
				     
				     
				         列表二
				     
				            
				   
				      
				          
				            
				              Sample string 1
				              Sample string 2
				              Sample string 3
				              Sample string 4
				              Sample string 5
				              
				            
				          
				             
				      
				          
				          
				           
				          
				                        
				           
				          
				           
				                      
				      
				          
				            
				           
				          
				                    
				  
				           
				
				
				  //将列表框1中的选定部分移到列表框2中
				  function Go_Left()
				     {
				       
				       for (i=0 ; i				          {
				            //如果这条被选中则复制倒列表框1中
				            if (form2.select2 .options [i].selected)
				              {
				                var element = window.Option.create (form2.select2.options [i].text,
				                               form2.select2 .options[i].value,0);
				                form1.select1.add (element);
				              }  
				              
				          }  
				       var j = 0 ;  
				       
				       //删除选定记录 
				       for (i=0 ; i< form2.select2 .options .length ; i++)
				          {
				            if (form2.select2 .options [i].selected)
				              {
				                form2.select2.remove(i);
				                i = i - 1 ;
				              }  
				              
				          }  
				    }
				    
				  //将列表框2中的选定部分移到列表框1中
				  function Go_Right()
				     {
				       for (i=0 ; i				          {
				            if (form1.select1 .options [i].selected )
				              {
				                var element = window.Option.create (form1.select1.options [i].text,
				                               form1.select1 .options[i].value,0);
				                form2.select2.add (element);
				              }  
				              
				          }  
				       for (i=0 ; i< form1.select1 .options .length ; i++)
				          {
				            if (form1.select1 .options [i].selected )
				              {
				                form1.select1.remove(i);
				                i = i - 1 ;
				              }  
				              
				          }  
				      
				          
				     }
				    
				              
							

相关资源