admin_db_ubackup.asp
上传用户:sking1122
上传日期:2020-09-24
资源大小:1005k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <!--#include file=admin_sb.asp-->
  2. <br>
  3. <form name="form1" method="post" action="?action=hy"> 
  4. <font color=red class="STYLE1"> 
  5. <% 
  6. if request.QueryString("action")="hy" then 
  7. Dbpath=trim(request.form("Dbpath")) 
  8. backpath=trim(request.form("backpath")) 
  9. if dbpath="" then 
  10. response.write "请输入备份的数据库全名" 
  11. else 
  12. Dbpath="../"&Dbpath
  13. Dbpath=server.mappath(Dbpath) 
  14. end if
  15. if backpath="" then 
  16. response.write "请输入您要恢复成的数据库全名" 
  17. else 
  18. backpath="../"&backpath
  19. backpath=server.mappath(backpath) 
  20. end if
  21. if  backpath<>"" and dbpath<>"" then
  22. Set Fso=server.createobject("scripting.filesystemobject") 
  23. if fso.fileexists(dbpath) then 
  24. fso.copyfile Dbpath,Backpath 
  25. response.write "成功恢复数据!" 
  26. else 
  27. response.write "备份目录下并无您的备份文件!" 
  28. end if 
  29. end if
  30. end if%> 
  31. </font> <table width="100%" height="1" border="0" align=center cellpadding="5" cellspacing="1" bgcolor="#336699" class="tableBorder"> 
  32. <tr> 
  33. <th width="593" height=25 bgcolor="#FFFFFF" >   <B>恢复数据</B>( 需要FSO支持,FSO相关帮助请看微软网站 ) </th> 
  34. </tr> 
  35. <tr> 
  36. <td height=100 bgcolor="#FFFFFF" class="forumrow">   备份数据库路径(相对): 
  37. <input type=text size=30 name=DBpath value="<%=const_backDatabase%>"> 
  38.   <BR> 
  39.   目标数据库路径(相对): 
  40. <input name=backpath type=text id="backpath" value="<%=const_AccessDatabase%>"  size=30> 
  41. <BR> 
  42.   填写您当前使用的数据库路径,如不想覆盖当前文件,可自行命名(注意路径是否正确),然后修改data.asp文件, 如果目标文件名和当前使用数据库名一致的话,不需修改data.asp文件<BR> 
  43.    
  44. <input name="submit" type=submit value="恢复数据"> 
  45. <br> 
  46. -------------------------------------------------------------------<br> 
  47. 注意:所有路径都是相对与程序空间根目录的相对路径 </td> 
  48. </tr> 
  49. </table> 
  50. <p> </p> 
  51. </form>