Public_info.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:6k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../FS_Inc/Const.asp" -->
  3. <!--#include file="../FS_Inc/Function.asp" -->
  4. <!--#include file="../FS_InterFace/MF_Function.asp" -->
  5. <!--#include file="lib/strlib.asp" -->
  6. <!--#include file="lib/UserCheck.asp" -->
  7. <%
  8. dim str_type,rs,C_rs,str_Id,str_URL,mf_rs,str_URL_domain,mf_domain
  9. str_type = NoSqlHack(Request.QueryString("type"))
  10. str_Id = NoSqlHack(Request.QueryString("Url"))
  11. '获得参数MF
  12. set mf_rs = Conn.execute("select top 1 MF_Domain From FS_MF_Config")
  13. mf_domain = mf_rs(0)
  14. mf_rs.close:set mf_rs = nothing
  15. select Case str_type
  16. case "NS"
  17. dim ns_rs,NewsDir_ns,IsDomain_ns
  18. set ns_rs = Conn.execute("select Top 1 NewsDir,IsDomain from FS_NS_SysParam")
  19. if ns_rs.eof then
  20. response.Write "找不到配置信息"
  21. response.end
  22. ns_rs.close:set ns_rs = nothing
  23. else
  24. NewsDir_ns = ns_rs(0)
  25. IsDomain_ns = ns_rs(1)
  26. ns_rs.close:set ns_rs = nothing
  27. end if
  28. set rs = Conn.execute("select IsURL,URLAddress,SaveNewsPath,FileName,FileExtName,ClassId From FS_NS_News where islock=0 and isRecyle=0 and isdraft=0 and Id="&str_Id)
  29. if rs.eof then
  30. response.Write("找不到记录")
  31. response.End
  32. rs.close:set rs =nothing
  33. else
  34. set c_rs = Conn.execute("select ClassEname,[Domain],SavePath from FS_NS_NewsClass where ClassiD='"&rs("ClassID")&"'")
  35. if c_rs.eof then
  36. response.Write("参数丢失")
  37. response.End
  38. c_rs.close:set c_rs = nothing
  39. else
  40. if c_rs("Domain")<>"" then
  41. str_URL_domain = "http://" & c_rs("Domain")
  42. else
  43. if IsDomain_ns<>"" then
  44. str_URL_domain = "http://" & IsDomain_ns
  45. else
  46. str_URL_domain = "http://" & mf_domain
  47. end if
  48. end if
  49. if rs("IsURL") = 0 then
  50. str_URL = str_URL_domain & c_rs("SavePath") & "/"& c_rs("ClassEname")&rs("SaveNewsPath")& "/" &rs("FileName")&"."&rs("FileExtName")
  51. else
  52. str_URL = rs("URLAddress")
  53. end if
  54. Call Url(str_URL)
  55. c_rs.close:set c_rs = nothing
  56. end if
  57. rs.close:set rs =nothing
  58. end if
  59. Case "MS"
  60. dim ms_rs,NewsDir_ms,IsDomain_ms
  61. set ms_rs = Conn.execute("select Top 1 SavePath,isDomain from FS_MS_SysPara")
  62. if ms_rs.eof then
  63. response.Write "找不到配置信息"
  64. response.end
  65. ms_rs.close:set ms_rs = nothing
  66. else
  67. NewsDir_ms = ms_rs(0)
  68. IsDomain_ms = ms_rs(1)
  69. ms_rs.close:set ms_rs = nothing
  70. end if
  71. set rs = Conn.execute("select SavePath,FileName,FileExtName,ClassId From FS_MS_Products where ReycleTF=0 and "&all_substring&"(StyleFlagBit,9,1)=0 and Id="&str_Id)
  72. if rs.eof then
  73. response.Write("找不到记录,商品已经删除或者已经被管理员锁定")
  74. response.End
  75. rs.close:set rs =nothing
  76. else
  77. set c_rs = Conn.execute("select ClassEName,[Domain],SavePath from FS_MS_ProductsClass where ClassiD='"&rs("ClassID")&"'")
  78. if c_rs.eof then
  79. response.Write("参数丢失")
  80. response.End
  81. c_rs.close:set c_rs = nothing
  82. else
  83. if c_rs("Domain")<>"" then
  84. str_URL_domain = "http://" & c_rs("Domain")
  85. else
  86. if IsDomain_ms<>"" then
  87. str_URL_domain = "http://" & IsDomain_ms
  88. else
  89. str_URL_domain = "http://" & mf_domain
  90. end if
  91. end if
  92. str_URL = str_URL_domain & replace(c_rs("SavePath") & "/"& c_rs("ClassEname")&rs("SavePath")& "/" &rs("FileName")&"."&rs("FileExtName"),"//","/")
  93. Call Url(str_URL)
  94. c_rs.close:set c_rs = nothing
  95. end if
  96. rs.close:set rs =nothing
  97. end if
  98. Case "DS"
  99. dim ds_rs,DownDir_ds,IsDomain_ds
  100. set ds_rs = Conn.execute("select Top 1 DownDir,IsDomain from FS_DS_SysPara")
  101. if ds_rs.eof then
  102. response.Write "找不到配置信息"
  103. response.end
  104. ds_rs.close:set ds_rs = nothing
  105. else
  106. DownDir_ds = ds_rs(0)
  107. IsDomain_ds = ds_rs(1)
  108. ds_rs.close:set ds_rs = nothing
  109. end if
  110. set rs = Conn.execute("select * From FS_DS_List where AuditTF=1 and Id="&str_Id)
  111. if rs.eof then
  112. response.Write("找不到记录,下载已经删除或者已经被管理员锁定")
  113. response.End
  114. rs.close:set rs =nothing
  115. else
  116. set c_rs = Conn.execute("select ClassEName,[Domain],SavePath from FS_DS_Class where ClassiD='"&rs("ClassID")&"'")
  117. if c_rs.eof then
  118. response.Write("参数丢失")
  119. response.End
  120. c_rs.close:set c_rs = nothing
  121. else
  122. if c_rs("Domain")<>"" then
  123. str_URL_domain = "http://" & c_rs("Domain")
  124. else
  125. if IsDomain_ms<>"" then
  126. str_URL_domain = "http://" & IsDomain_ds
  127. else
  128. str_URL_domain = "http://" & mf_domain
  129. end if
  130. end if
  131. str_URL = str_URL_domain & replace(c_rs("SavePath") & "/"& c_rs("ClassEname")&rs("SavePath")& "/" &rs("FileName")&"."&rs("FileExtName"),"//","/")
  132. Call Url(str_URL)
  133. c_rs.close:set c_rs = nothing
  134. end if
  135. rs.close:set rs =nothing
  136. end if
  137. Case "LS"
  138. dim rs_log,rs_log_dir
  139. set rs_log = User_Conn.execute("select top 1 Dir From FS_ME_iLogSysParam")
  140. if rs_log.eof then
  141. rs_log_dir = "blog"
  142. rs_log.close:set rs_log = nothing
  143. else
  144. rs_log_dir = rs_log("Dir")
  145. rs_log.close:set rs_log = nothing
  146. end if
  147. str_URL = "http://"& mf_domain & "/" & rs_log_dir & "/Blog.asp?id="&str_Id
  148. Call Url(str_URL)
  149. Case "PH"
  150. dim rs_ph,rs_ph_dir
  151. set rs_ph = User_Conn.execute("select top 1 Dir From FS_ME_iLogSysParam")
  152. if rs_ph.eof then
  153. rs_ph_dir = "blog"
  154. rs_ph.close:set rs_ph = nothing
  155. else
  156. rs_ph_dir = rs_ph("Dir")
  157. rs_ph.close:set rs_ph = nothing
  158. end if
  159. str_URL = "http://"& mf_domain & "/" & rs_ph_dir & "/ShowPhoto.asp?id="&str_Id
  160. Call Url(str_URL)
  161. Case "HS"
  162. str_URL = "http://"& mf_domain & "/House/HouseRead.asp?id="&str_Id
  163. Call Url(str_URL)
  164. Case "SD"
  165. dim rs_SD,rs_sd_dir,rs_sd_domain
  166. set rs_SD = User_Conn.execute("select top 1 [Domain],SavePath From FS_SD_Config")
  167. if rs_SD.eof then
  168. rs_sd_dir = "Supply"
  169. rs_SD.close:set rs_SD = nothing
  170. else
  171. rs_sd_dir = rs_SD("SavePath")
  172. rs_sd_domain =  rs_SD("Domain")
  173. rs_SD.close:set rs_SD = nothing
  174. end if
  175. if rs_sd_domain<>"" then
  176. str_URL = "http://"& rs_sd_domain & "/"& rs_sd_dir &"/Supply.asp?id="&str_Id
  177. else
  178. str_URL = "http://"& mf_domain & "/"& rs_sd_dir &"/Supply.asp?id="&str_Id
  179. end if
  180. Call Url(str_URL)
  181. end select
  182. HouseRead.asp
  183. Function Url(str_URL)
  184. response.Redirect str_URL
  185. response.end
  186. End Function
  187. %>
  188. <!--Powsered by Foosun Inc.,Product:FoosunCMS V4.0系列-->