WAP网上购物系统源程序,,有兴趣的朋友,一起研究一下..交流经眼

源代码在线查看: admin_db_executesql.asp

软件大小: 708 K
上传用户: zaindyclg
关键词: WAP 网上购物 源程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
								Dim const_txl_HomeUrl
				const_txl_HomeUrl = ""
				%>
				
								Call OpenDataBase
				txl_SiteHead const_txlname&"- 管理员"
				showmain
				web_end
				Call CloseDataBase
				Response.End()
				sub showmain
				%>
				
				
				   
				      管理系统 >> 
				        管理首页>>直接执SQL语句
				      					  	call showsqlinput
						if Request.QueryString("action")="exe" Then
							Dim strsql
							strsql=Request.form("sql")
							if Request.form("rs")"" and strsql"" then
								executesql strsql,1
							elseif Request.Form("nors")"" and strsql"" then
								executesql strsql,2
							end if
						end if
					  %>
				      
				  
				
				
								%>
				
				         
				          
				    
				         注意:待执行SQL语句(警告:执行语句要万分小心!) 
				                执行SQL语句有两个选项,如果要求得到记录集,请点击第一个提交按钮,否则请选第二个
				          
				          
				        
				         
				          
				                  
				          
				        
				      
				       
				        
				      
								end sub
				function executesql(sql,sqltype)
					'on error resume next
					dim rs,i
					conn.Errors.Clear 
					Response.write "SQL语句:"&sql&""
					if sqltype=1 then
						set rs=conn.Execute (sql)
						if not rs.eof then
						%>
						
							 
							  
								 
							  
							
							
							
							
								
							
							
														Rs.movenext
							Wend
							rs.close
						end if
					elseif sqltype=2 then 
						conn.execute (sql)	
					end if
				end function
				%>			

相关资源