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

数据库编程

开发平台:

ASP/ASPX

  1. <script language="javascript">
  2. function openScript(url, width, height){
  3. var Win=window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=no' );
  4. }
  5. </script>
  6. <%
  7. MF_Default_Conn
  8. Dim TellRs,TelTopic,sqlTess,AddDate
  9. Set TellRs= server.CreateObject (G_FS_RS)
  10. sqlTess="select ID,Topic,Content,Person,IsUse,PV,AddUser,AddDate From FS_WS_NewsTell where IsUse='1'"
  11. TellRs.open sqlTess,Conn,1,1
  12. if not TellRs.eof then
  13. TelTopic=trim(TellRs("Topic"))
  14. AddDate=Trim(TellRs("AddDate"))
  15. end if
  16. set TellRs=nothing
  17. %>
  18. <table cellspacing=1 cellpadding=3 align=center border=0 width=98%><tr><td align=center width=100% valign=middle colspan=2><strong>公告信息:</strong>
  19. <%
  20. if Topic="" then
  21. %>
  22. <B>当前没有公告</B>(<%=now()%>)
  23. <%
  24. else
  25. %>
  26. <a href="javascript:openScript('announcements.asp?action=showone&boardid=0',500,300)"><B><%=TelTopic%></B></a>(<%=AddDate%>)
  27. <%
  28. end if
  29. %>
  30. </td></tr></table>