wy_trip_solutionupasp.asp
上传用户:hnxqingdao
上传日期:2013-05-22
资源大小:1283k
文件大小:2k
源码类别:

其他行业

开发平台:

ASP/ASPX

  1. <!--#include file="../../wy_trip_inc/wy_trip_cnn.inc"-->
  2. <!--#include file="../../wy_trip_inc/wy_trip_fun.inc"-->
  3. <%
  4.     solname=request.QueryString("solname")
  5.     solinfor1=request.form("solinfor1")
  6. solinfor2=request.form("solinfor2")
  7. solinfor3=request.form("solinfor3")
  8. solkind=request.QueryString("solkind")
  9. 'response.Write(solname)
  10. 'response.Write(solinfor1&solinfor2&solinfor3)
  11. if(solname<>"")then
  12. '=============================================
  13. if(solkind=0)then
  14.     sqlstr1="select * from  trip_solhomeland  where solname='"&solname&"'"
  15. sqlstr2="select * from  trip_solhomelandinfor  where solname='"&solname&"'"
  16. else
  17.     sqlstr1="select * from  trip_soloverseas  where solname='"&solname&"'"
  18. sqlstr2="select * from  trip_soloverseasinfor  where solname='"&solname&"'"
  19. end if
  20. set rst=server.CreateObject("adodb.recordset")
  21.     i=0
  22.     rst.open sqlstr1,conn,1,3
  23. if not (rst.eof or rst.bof) then
  24.      rst("solinfor1")=replace(trim(solinfor1),chr(13),"<br>")
  25.  rst("solinfor2")=replace(trim(solinfor2),chr(13),"<br>")
  26.          rst("solinfor3")=replace(trim(solinfor3),chr(13),"<br>")
  27.  rst.update
  28.  i=1
  29. end if
  30. rst.close
  31. rst.open sqlstr2,conn,1,3
  32. if not (rst.eof or rst.bof) then
  33.        rst("soltime")=wytime()
  34.    rst.update
  35. end if
  36. rst.close
  37. set rst=nothing
  38. if(i=1)then
  39.       response.Redirect("../wy_trip_admin.asp")
  40. else
  41.      call systemerror("声明信息更新 失败!")
  42. end if
  43. '===================================
  44. else
  45.       if (solkind=0) then
  46.       sqlstr="select * from trip_soloverseas"
  47.   else
  48.       sqlstr="select * from trip_solhomeland"
  49.   end if   
  50.   
  51.   set rst=server.CreateObject("adodb.recordset")
  52.   rst.open sqlstr,conn,1,3
  53.   rst.addnew
  54.   rst("solinfor1")=solinfor1
  55.   rst("solinfor2")=solinfor2
  56.           rst("solinfor3")=solinfor3
  57.   rst.update
  58.   rst.close
  59.   set rst=nothing
  60.   
  61. end if
  62. %>