PageRenderTime 36ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/mobile/temp/cal.asp

https://bitbucket.org/moovex_t1/moovex
ASP | 61 lines | 51 code | 7 blank | 3 comment | 0 complexity | 1e4d257eebdd340721c05227947c18c1 MD5 | raw file
  1. <!--#include file="include.asp"-->
  2. <%
  3. 'if session("login") = "" then rred("login.asp")
  4. rr ("<!DOCTYPE html>")
  5. rr ("<html>")
  6. rr ("<head>")
  7. rr ("<meta http-equiv=X-UA-Compatible content=IE=edge>")
  8. rr ("<title>"& pagetitle &"</title>")
  9. rr ("<meta http-equiv=Content-Type content=text/html; charset=windows-1255>")
  10. rr ("<meta http-equiv=Content-Language content=he>")
  11. rr ("<META name=Language content=he>")
  12. rr ("<META name=distribution content=Global>")
  13. rr ("<link href=calendar/fullcalendar.css rel=stylesheet>")
  14. rr ("<link href=images/style.css rel=stylesheet type=text/css>")
  15. rr ("<script src=calendar/jquery.min.js></script>")
  16. rr ("<script src=calendar/jquery-ui.custom.min.js></script>")
  17. rr ("<script src=calendar/fullcalendar.js></script>")
  18. rr ("<script>")
  19. rr (" $(document).ready(function() { " & vbcrlf)
  20. rr (" var date = new Date(); " & vbcrlf)
  21. rr (" var d = date.getDate(); " & vbcrlf)
  22. rr (" var m = date.getMonth(); " & vbcrlf)
  23. rr (" var y = date.getFullYear(); " & vbcrlf)
  24. rr (" $('#calendar').fullCalendar({ " & vbcrlf)
  25. rr (" editable: true, " & vbcrlf)
  26. rr (" events: [ " & vbcrlf)
  27. rr (" { " & vbcrlf)
  28. rr (" id: 999, " & vbcrlf)
  29. rr (" title: 'Click for Google', " & vbcrlf)
  30. rr (" start: new Date(y, m, 25), " & vbcrlf)
  31. rr (" end: new Date(y, m, 26), " & vbcrlf)
  32. rr (" url: 'http://axisis.net' " & vbcrlf)
  33. rr (" } " & vbcrlf)
  34. rr (" ] " & vbcrlf)
  35. rr (" }); " & vbcrlf)
  36. rr (" }); " & vbcrlf)
  37. rr (" </script>")
  38. rr (" </head>")
  39. rr (" <body>")
  40. '--------------Header-----------------------------------------------------------------------------
  41. rr ("<table width=100% border=0 cellpadding=0 cellspacing=0 dir=ltr>")
  42. rr ("<tr>")
  43. rr ("<td height=30 bgcolor=#000000>&nbsp;</td>")
  44. rr ("</tr>")
  45. rr ("<tr>")
  46. rr ("<td height=110 bgcolor=#EEEEEE><a href=default.asp><img src=images/moovex.png width=300 height=97 hspace=20 border=0></a></td>")
  47. rr ("</tr>")
  48. rr ("</table>")
  49. rr ("<br />")
  50. '--------------End Header-----------------------------------------------------------------------------
  51. rr (" <div id='calendar'></div>")
  52. rr (" </body>")
  53. rr (" </html>")
  54. %>