返回列表 发帖
hoho,上传了。还有蓝色说明。
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

强大而勤劳的蚂蚁,谢谢!
可以打包上传的啊。
欢迎光临:逐梦论坛

TOP

10:其他文件:

a:音乐文件:1.mp3;
b:数据库文件:nmc.mdb
c:数据库类型:access
d:数据库结构:

表名:mayi_nm
字段:qq,name,nmc,shi,fen,tiqian,shijian [ shijian的默认值为now() ]
字段类型参考ok.asp说明
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

9:修改文件b:xgok.asp
  1. <!-- #include file="conn.asp" -->

  2. <%
  3. k=session("b")

  4. o=request("textfield")
  5. j=request("textfield1")
  6. q=request("textfield3")
  7. m=request("textfield4")
  8. n=request("textfield5")
  9. h=request("textfield6")

  10. set rs=server.createobject("adodb.recordset")
  11. sql="select * from mayi_nm where id="&k
  12. rs.open sql,conn,1,3

  13. rs("qq")=o
  14. rs("nmc")=j
  15. rs("name")=q
  16. rs("shi")=m
  17. rs("fen")=n
  18. rs("tiqian")=h

  19. rs.update
  20.         response.write "<script type='text/javascript'>alert('恭喜成功修改');location.href='index.asp';</script>"


  21. %>
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

8:修改文件a:xiugai.asp
  1. <!-- #include file="conn.asp" -->
  2. <html>
  3. <head>
  4. <link href="css.css" rel="stylesheet" type="text/css">
  5. </head>

  6. <body>

  7. <%
  8. s=request("t")
  9. session("b")=s

  10. set rs=server.createobject("adodb.recordset")
  11. sql="select * from mayi_nm where id="&s
  12. rs.open sql,conn,1,3

  13. %>

  14.   <p></p>

  15. <table width="500" border="0" cellspacing="1" cellpadding="1" align="center" bgcolor="#000000">
  16. <tr bgcolor="#ffffff">
  17. <td>
  18. <a href=index.asp target="_top">返回首页</a>
  19. </td>
  20. </tr>
  21. </table>
  22.   <br>
  23. <table width="500" border="0" cellspacing="1" cellpadding="1" align="center" bgcolor="#000000">
  24. <form name="form1" method="post" action="xgok.asp">
  25. <tr bgcolor="#ffffff">
  26. <td>qq号</td><td><input name="textfield" type="text" value="<%=rs("qq")%>"></td>
  27. <td>区域</td><td><input name="textfield1" value="<%=rs("nmc")%>"></td></tr>
  28. <tr bgcolor="#ffffff">
  29. <td>种类</td><td><input style="width:70" name="textfield3" value="<%=rs("name")%>"></td>
  30. <td>小时</td><td><input name="textfield4" value="<%=rs("shi")%>"></td></tr>

  31. <tr bgcolor="#ffffff">
  32. <td>分钟</td><td><input name="textfield5" value="<%=rs("fen")%>"></td>
  33. <td>提前</td><td><input name="textfield6" value="<%=rs("tiqian")%>"></td></tr>

  34. <tr bgcolor="#ffffff"><td colspan=4><input type="submit" name="submit" value="提交修改"></td></tr>
  35.   </table>
  36.   <p></p>
  37.   <p></p>
  38.   <p></p>
  39.   <p></p>
  40. </form>
  41. </table>
  42. </body>
  43. </html>
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

7:删除文件:del.asp
  1. <!-- #include file="conn.asp" -->

  2. <%
  3. exec="delete * from mayi_nm where id="&request.querystring("id")
  4. conn.execute exec
  5. conn.close
  6. set conn=nothing
  7.         response.redirect "index.asp"
  8. %>
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

6:ajax无刷新文件:ajax.js
  1. //ajax刷新

  2. function createxmlhttp()

  3. {
  4. xmlhttpobj = false;
  5. try{
  6. xmlhttpobj = new activexobject;
  7. }catch(e){
  8. try{
  9. xmlhttpobj=new activexobject("msxml2.xmlhttp");
  10. }catch(e2){
  11. try{
  12. xmlhttpobj=new activexobject("microsoft.xmlhttp");
  13. }catch(e3){
  14. xmlhttpobj = false;
  15. }
  16. }
  17. }
  18. return xmlhttpobj;
  19. }


  20. function getajax()
  21. {
  22. var xmlhttpobj = createxmlhttp();
  23. if(xmlhttpobj){//如果创建对象xmlhttpobj成功

  24. xmlhttpobj.open('get',"nm.asp",true);//get方法
  25. xmlhttpobj.send(null);
  26. xmlhttpobj.onreadystatechange=function(){//客户端监控函数
  27. if(xmlhttpobj.readystate==4){//服务器处理请求完成
  28. if(xmlhttpobj.status==200){
  29. var htmlxxx = xmlhttpobj.responsetext;//获得返回值
  30. document.getelementbyid("loadajaxtips").innerhtml=htmlxxx;
  31. }else{
  32. document.getelementbyid("loadajaxtips").innerhtml="<font color='red'>加载错误</font>";
  33. }
  34. }else{
  35. document.getelementbyid("loadajaxtips").innerhtml="";//服务器处理中
  36. }
  37. }
  38. }
  39. }

  40. //js时间刷新
  41. setinterval("time.innertext=new date().tolocalestring()",1000)
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

5:提交到数据库文件:ok.asp
  1. <%
  2. dim name,nmc,shi,fen,shijian,qq,tiqian       
  3. name=trim(request.form("name"))        '文本
  4. nmc=trim(request.form("nmc"))        '文本
  5. shi=trim(request.form("shi"))        '数字
  6. fen=trim(request.form("fen"))        '数字
  7. qq=trim(request.form("qq"))        '数字
  8. tiqian=trim(request.form("tiqian"))        '数字

  9. if name="" then
  10. response.write "<script language=javascript>alert('成熟种类不能为空');"
  11. response.write "this.location.href='vbscript:history.back()';</script>"
  12. response.end
  13. elseif qq="" then
  14. response.write "<script language=javascript>alert('请填写qq号码');"
  15. response.write "this.location.href='vbscript:history.back()';</script>"
  16. response.end
  17. elseif shi="" then
  18. response.write "<script language=javascript>alert('小时不能为空');"
  19. response.write "this.location.href='vbscript:history.back()';</script>"
  20. response.end
  21. elseif fen="" then
  22. response.write "<script language=javascript>alert('分钟不能为空');"
  23. response.write "this.location.href='vbscript:history.back()';</script>"
  24. response.end
  25. else
  26. %>
  27. <!-- #include file="conn.asp" -->
  28. <%
  29. dim sql


  30.         sql="insert into mayi_nm(name,nmc,shi,fen,qq,tiqian)values('"+name+"','"+nmc+"','"+shi+"','"+fen+"','"+qq+"','"+tiqian+"')"
  31.         conn.execute(sql)

  32.         conn.close
  33.         set conn=nothing
  34.         response.redirect "index.asp"
  35. end if
  36. %>
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

4:ajax无刷新读取数据库内容:nm.asp

  1. <!-- #include file="conn.asp" -->

  2. <%
  3. response.contenttype="text/html; charset=gb2312"
  4. response.buffer = true
  5. response.expires = -1
  6. response.expiresabsolute = now() - 1
  7. response.expires = 0
  8. response.cachecontrol = "no-cache"

  9.      do while not rs.eof

  10. dim time,time1,time2,newdate,newdate1,newdate2
  11. time=rs("shi")*60 + rs("fen") '将成熟时间换算为分钟
  12. time1=rs("shijian") '提交时的时间
  13. time2=rs("tiqian") '提前n分钟报警
  14. newdate = dateadd("n",time,time1) '成熟时间
  15. newdate1 = dateadd("n",-time2,newdate) '报警时间
  16. newdate2 = datediff("s",now(),newdate) '倒计时读秒
  17.      response.write "·【<a href=http://"&amp;rs("qq")&amp;".qzone.qq.com target=_blank><b>"&amp;rs("qq")&amp;"</b>】</a>的【<font color=#880088>"&amp; rs("nmc") &amp; rs("name") &amp;"</font>】于"&amp;newdate&amp;"成熟 还剩["&amp;newdate2&amp;"]秒 "




  18. if now() > newdate1 and now() < newdate then

  19.      response.write "<font color=""red"">请准备收获你的【"&amp; rs("nmc") &amp; rs("name") &amp;"】!</font>"
  20. %>
  21. <bgsound src="1.mp3" id="music" loop=-1>
  22. <a href="#">停止</a>
  23. <a href="#">播放</a>

  24. <%
  25.      response.write " <a href=del.asp?id="&amp;rs("id")&amp;"><font color=#ff44ff>删</font></a><br>"
  26.      else
  27.      response.write "<a href=del.asp?id="&amp;rs("id")&amp;"><font color=#ff44ff>删除</font></a> <a href=""xiugai.asp?t="&amp;rs("id")&amp;"""><font color=red>修改</font></a><br>"
  28.      end if

  29.      rs.movenext
  30.      loop

  31. response.end()

  32.      rs.close
  33.      set rs=nothing

  34. %>
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

3:css层文件:css.css
  1. a{text-decoration: none;} /* 链接无下划线,有为underline */
  2. a:link {color: blue;} /* 未访问的链接 */
  3. a:visited {color: blue;} /* 已访问的链接 */
  4. a:hover{background: #;text-decoration: underline;position: relative; right: 0px;top: 1px} /* 鼠标在链接上 */
  5. a:active {color: #0000ff;} /* 点击激活链接 */

  6. body
  7. {
  8. font-size: 9pt;background-color:#fff;
  9. scrollbar-face-color: #acd5e5;
  10. scrollbar-highlight-color: #ffffff; scrollbar-shadow-color: #cccccc; scrollbar-3dlight-color: #cccccc; scrollbar-arrow-color: #330000; scrollbar-track-color: #f6f6f6; scrollbar-darkshadow-color: #ffffff;
  11. margin-top: 1px;
  12. margin-bottom: 1px;
  13. }



  14. input
  15. {
  16. background-color: #ffffff;
  17. border-bottom: #666666 1px solid;
  18. border-left: #666666 1px solid;
  19. border-right: #666666 1px solid;
  20. border-top: #666666 1px solid;
  21. color: #666666;
  22. height: 18px;
  23. border-color: #666666 #666666 #666666 #666666; font-size: 9pt
  24. }

  25. button
  26. {
  27. font-size: 9pt;height: 20px;
  28. }

  29. select
  30. {
  31. background-color: #ffffff;
  32. font-size: 9pt;height: 20px;
  33. color: #666666;
  34. }

  35. td
  36. {
  37. font-family:宋体;font-size: 9pt;line-height: 180%;
  38. }

  39. /* form表单底距为0 */
  40. form
  41. {
  42.     margin:0px;padding:0px
  43. }

  44. /*仿ajax*/

  45. .bg{position:absolute;z-index:999;filter:alpha(opacity=50);background:#666;opacity: 0.5;-moz-opacity: 0.5;left:0;top:0;height:3000%;width:100%;}
  46. .beian_winbg {
  47. margin-top: -100px; left: 50%; margin-left: -190px; width: 376px; position: absolute; top: 50%; height:200px;border:#666666 1px solid;z-index: 1000;
  48. }
复制代码
不与世相争,纷扰的网络与我无关,沉寂的世界或许能带我美好... 忙忙碌碌的奔波,只为我明天的生活...

TOP

返回列表

Powered by Discuz! 7.2   论坛QQ群:逐梦论坛群

© 2001-2021 Comsenz Inc. 鲁公网安备 37120302000001号