/mobile/temp/cal.asp
ASP | 61 lines | 51 code | 7 blank | 3 comment | 0 complexity | 1e4d257eebdd340721c05227947c18c1 MD5 | raw file
- <!--#include file="include.asp"-->
- <%
- 'if session("login") = "" then rred("login.asp")
- rr ("<!DOCTYPE html>")
- rr ("<html>")
- rr ("<head>")
- rr ("<meta http-equiv=X-UA-Compatible content=IE=edge>")
- rr ("<title>"& pagetitle &"</title>")
- rr ("<meta http-equiv=Content-Type content=text/html; charset=windows-1255>")
- rr ("<meta http-equiv=Content-Language content=he>")
- rr ("<META name=Language content=he>")
- rr ("<META name=distribution content=Global>")
- rr ("<link href=calendar/fullcalendar.css rel=stylesheet>")
- rr ("<link href=images/style.css rel=stylesheet type=text/css>")
- rr ("<script src=calendar/jquery.min.js></script>")
- rr ("<script src=calendar/jquery-ui.custom.min.js></script>")
- rr ("<script src=calendar/fullcalendar.js></script>")
- rr ("<script>")
- rr (" $(document).ready(function() { " & vbcrlf)
- rr (" var date = new Date(); " & vbcrlf)
- rr (" var d = date.getDate(); " & vbcrlf)
- rr (" var m = date.getMonth(); " & vbcrlf)
- rr (" var y = date.getFullYear(); " & vbcrlf)
- rr (" $('#calendar').fullCalendar({ " & vbcrlf)
- rr (" editable: true, " & vbcrlf)
- rr (" events: [ " & vbcrlf)
- rr (" { " & vbcrlf)
- rr (" id: 999, " & vbcrlf)
- rr (" title: 'Click for Google', " & vbcrlf)
- rr (" start: new Date(y, m, 25), " & vbcrlf)
- rr (" end: new Date(y, m, 26), " & vbcrlf)
- rr (" url: 'http://axisis.net' " & vbcrlf)
- rr (" } " & vbcrlf)
- rr (" ] " & vbcrlf)
- rr (" }); " & vbcrlf)
- rr (" }); " & vbcrlf)
- rr (" </script>")
- rr (" </head>")
- rr (" <body>")
- '--------------Header-----------------------------------------------------------------------------
- rr ("<table width=100% border=0 cellpadding=0 cellspacing=0 dir=ltr>")
- rr ("<tr>")
- rr ("<td height=30 bgcolor=#000000> </td>")
- rr ("</tr>")
- rr ("<tr>")
- 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>")
- rr ("</tr>")
- rr ("</table>")
- rr ("<br />")
- '--------------End Header-----------------------------------------------------------------------------
- rr (" <div id='calendar'></div>")
- rr (" </body>")
- rr (" </html>")
- %>