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

数据库编程

开发平台:

ASP/ASPX

  1. <%'Copyright (c) 2006 Foosun Inc. Code by Einstein.liu
  2. Class cls_Contr
  3. Private C_ContID,C_ContSytle,C_ContTitle,C_SubTitle,C_ContContent,C_AddTime,C_PassTime,C_ClassID,C_MainID,C_KeyWords,C_IsPublic,C_InfoType,C_UserNumber,C_OtherContent,C_IsLock,C_isTF,C_Hits,C_AdminLock,C_PicFile,C_TempletID,C_FileName,C_FileExeName,C_AuditTF,C_Untread,C_type
  4. Public function getContrInfo(id)
  5. dim contrRs
  6. Set contrRs=Server.CreateObject(G_FS_RS)
  7. contrRs.open "select ContID,ContSytle,ContTitle,SubTitle,ContContent,AddTime,PassTime,ClassID,MainID,KeyWords,IsPublic,InfoType,UserNumber,OtherContent,IsLock,isTF,Hits,AdminLock,PicFile,TempletID,FileName,FileExeName,AuditTF,Untread,type from FS_ME_InfoContribution where ContID="&ID,User_Conn,1,1
  8. if not contrRs.eof then
  9. C_ContID=contrRs("ContID")
  10. C_ContSytle=contrRs("ContSytle")
  11. C_ContTitle=contrRs("ContTitle")
  12. C_SubTitle=contrRs("SubTitle")
  13. C_ContContent=contrRs("ContContent")
  14. C_AddTime=contrRs("AddTime")
  15. C_PassTime=contrRs("PassTime")
  16. C_ClassID=contrRs("ClassID")
  17. C_MainID=contrRs("MainID")
  18. C_KeyWords=contrRs("KeyWords")
  19. C_IsPublic=contrRs("IsPublic")
  20. C_InfoType=contrRs("InfoType")
  21. C_UserNumber=contrRs("UserNumber")
  22. C_OtherContent=contrRs("OtherContent")
  23. C_IsLock=contrRs("IsLock")
  24. C_isTF=contrRs("isTF")
  25. C_Hits=contrRs("Hits")
  26. C_AdminLock=contrRs("AdminLock")
  27. C_PicFile=contrRs("PicFile")
  28. C_TempletID=contrRs("TempletID")
  29. C_FileName=contrRs("FileName")
  30. C_FileExeName=contrRs("FileExeName")
  31. C_AuditTF=contrRs("AuditTF")
  32. C_Untread=contrRs("Untread")
  33. C_type=contrRs("type")
  34. End if
  35. contrRs.close
  36. Set contrRs=nothing
  37. End Function
  38. '■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  39. public property get id
  40. id=C_ContID
  41. End property
  42. public property get ContSytle'0原创,1转载,3代理
  43. ContSytle=C_ContSytle
  44. End property
  45. public property get ContTitle'主标题
  46. ContTitle=C_ContTitle
  47. End property
  48. public property get SubTitle'副标题
  49. SubTitle=C_SubTitle
  50. End property
  51. public property get ContContent'正文
  52. ContContent=C_ContContent
  53. End property
  54. public property get AddTime'添加时间
  55. AddTime=C_AddTime
  56. End property
  57. public property get PassTime'审核通过时间
  58. PassTime=C_PassTime
  59. End property
  60. public property get ClassID'专栏ID
  61. ClassID=C_ClassID
  62. End property
  63. public property get MainID'主站分类ID
  64. MainID=C_MainID
  65. End property
  66. public property get KeyWords'关键字
  67. KeyWords=C_KeyWords
  68. End property
  69. public property get IsPublic'是否发布到总站,1为是发布到总站显示,0为发布到自己的空间。空间地址:/用户目录/用户编号
  70. IsPublic=C_IsPublic
  71. End property
  72. public property get InfoType'信息级;普通:0,优先:1,加急:2
  73. InfoType=C_InfoType
  74. End property
  75. public property get UserNumber'发布者编号
  76. UserNumber=C_UserNumber
  77. End property
  78. public property get OtherContent'备注,比如文学类:此评语供编辑审核或推荐参考,内容可为作品导读、评析或创作感言等,较好的评语在审核通过后会显示到文章页面。填写此项有助于您的作品快速审核或加深读者理解。
  79. OtherContent=C_OtherContent
  80. End property
  81. public property get IsLock'是否锁定
  82. IsLock=C_IsLock
  83. End property
  84. public property get isTF'是否推荐
  85. isTF=C_isTF
  86. End property
  87. public property get Hits'点击数
  88. Hits=C_Hits
  89. End property
  90. public property get AdminLock'管理员锁定
  91. AdminLock=C_AdminLock
  92. End property
  93. public property get PicFile'图片地址
  94. PicFile=C_PicFile
  95. End property
  96. public property get TempletID'信息模板ID(暂时保留)
  97. TempletID=C_TempletID
  98. End property
  99. public property get FileName'静态文件文件名
  100. FileName=C_FileName
  101. End property
  102. public property get FileExeName'扩展名
  103. FileExeName=C_FileExeName
  104. End property
  105. public property get AuditTF'是否已审核(1:已审核;0:未审核)
  106. AuditTF=C_AuditTF
  107. End property
  108. public property get Untread'是否退稿
  109. Untread=C_Untread
  110. End property
  111. public property get ctype'0为新闻,1为下载,2为商品
  112. ctype=C_type
  113. End property
  114. End Class
  115. %>