Warning: Work in Progress...
This is a discussion on Calender (LANGUAGE="JavaScript") within the Web Programming (ASP, HTML, PHP, XML etc) forums, part of Computer World category; <html> <head> <title>Calender</title> <base target="leftframe"> </head> <body BGCOLOR="#ffffff" link="#CC0033" vlink="#333399" alink="#FF0000" <!--content start--> <p align="center">&nbsp;</p> <table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5"> <tr> <td WIDTH="100%"><font FACE="ARIEL,HELVETICA" SIZE="-1"><p align="center"><script LANGUAGE="JavaScript"> monthnames = new ...

Advertisement
Want to advertise? Learn how to remove ads

Notices

Tags : calender
Thread Tools   Switch to Linear ModeSwitch to Hybrid ModeSwitch to Threaded Mode
prithibi's Avatar
prithibi
ctrl+alt+del
Posts/Threads: 36/19
Thanks: 0
Thanked 13 Times in 5 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 46/620
prithibi is a name known to allprithibi is a name known to allprithibi is a name known to allprithibi is a name known to allprithibi is a name known to allprithibi is a name known to all
Post Calender (LANGUAGE="JavaScript"), Posted September 6th, 2005, 03:57 PM #1 (permalink) |
<html>
<head>
<title>Calender</title>
<base target="leftframe">
</head>
<body BGCOLOR="#ffffff" link="#CC0033" vlink="#333399" alink="#FF0000" <!--content start-->
<p align="center">&nbsp;</p>
<table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
<tr>
<td WIDTH="100%"><font FACE="ARIEL,HELVETICA" SIZE="-1"><p align="center"><script
LANGUAGE="JavaScript">
monthnames = new Array(
"January",
"Februrary",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"Decemeber");
var linkcount=0;
function addlink(month, day, href) {
var entry = new Array(3);
entry[0] = month;
entry[1] = day;
entry[2] = href;
this[linkcount++] = entry;
}
Array.prototype.addlink = addlink;
linkdays = new Array();
monthdays = new Array(12);
monthdays[0]=31;
monthdays[1]=28;
monthdays[2]=31;
monthdays[3]=30;
monthdays[4]=31;
monthdays[5]=30;
monthdays[6]=31;
monthdays[7]=31;
monthdays[8]=30;
monthdays[9]=31;
monthdays[10]=30;
monthdays[11]=31;
todayDate=new Date();
thisday=todayDate.getDay();
thismonth=todayDate.getMonth();
thisdate=todayDate.getDate();
thisyear=todayDate.getYear();
thisyear = thisyear % 100;
thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
if (((thisyear % 4 == 0)
&& !(thisyear % 100 == 0))
||(thisyear % 400 == 0)) monthdays[1]++;
startspaces=thisdate;
while (startspaces > 7) startspaces-=7;
startspaces = thisday - startspaces + 1;
if (startspaces < 0) startspaces+=7;
document.write("<table border=2 bgcolor=white ");
document.write("bordercolor=black><font color=black>");
document.write("<tr><td colspan=7><center><strong>"
+ monthnames[thismonth] + " " + thisyear
+ "</strong></center></font></td></tr>");
document.write("<tr>");
document.write("<td align=center>Su</td>");
document.write("<td align=center>M</td>");
document.write("<td align=center>Tu</td>");
document.write("<td align=center>W</td>");
document.write("<td align=center>Th</td>");
document.write("<td align=center>F</td>");
document.write("<td align=center>Sa</td>");
document.write("</tr>");
document.write("<tr>");
for (s=0;s<startspaces;s++) {
document.write("<td> </td>");
}
count=1;
while (count <= monthdays[thismonth]) {
for (b = startspaces;b<7;b++) {
linktrue=false;
document.write("<td>");
for (c=0;c<linkdays.length;c++) {
if (linkdays[c] != null) {
if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
document.write("<a href=\"" + linkdays[c][2] + "\">");
linktrue=true;
}
}
}
if (count==thisdate) {
document.write("<font color='FF0000'><strong>");
}
if (count <= monthdays[thismonth]) {
document.write(count);
}
else {
document.write(" ");
}
if (count==thisdate) {
document.write("</strong></font>");
}
if (linktrue)
document.write("</a>");
document.write("</td>");
count++;
}
document.write("</tr>");
document.write("<tr>");
startspaces=0;
}
document.write("</table></p>");
// End -->
</script> </font></td>
</tr>
</table>
<!--content stop-->
</body>
</html>
| Reply With Quote
The Following User Says Thank You to prithibi For This Useful Post:
Rayan (March 11th, 2007)
OvI's Avatar
OvI
«¤» rYTµm «¤»
Posts/Threads: 4,517/494
Thanks: 183
Thanked 932 Times in 647 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 551/42187
OvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond reputeOvI has a reputation beyond repute
Default Posted September 9th, 2005, 08:45 PM #2 (permalink) |
Yea kya hai ?... wht is this ?... ei ta ki ?...






| Reply With Quote
prithibi's Avatar
prithibi
ctrl+alt+del
Posts/Threads: 36/19
Thanks: 0
Thanked 13 Times in 5 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 46/620
prithibi is a name known to allprithibi is a name known to allprithibi is a name known to allprithibi is a name known to allprithibi is a name known to allprithibi is a name known to all
Default Posted September 10th, 2005, 12:57 PM #3 (permalink) |
OvI Just Chk Thread Title and my topic title. i think this area is not for you. shamjha ab ey keya hain ?
| Reply With Quote
mina's Avatar
mina
~Brishti Bilashini~
Posts/Threads: 8,426/651
Thanks: 6,869
Thanked 3,404 Times in 2,163 Posts
Blog Entries: 49
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 1854/166361
mina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond repute
Default Posted March 11th, 2007, 05:59 PM #4 (permalink) |
Very good..did you created this on ur own?

i usually takes free library from online..thanks for sharing.
Some friends forget, Some move away
Some keep silent, Some just change
But I’m not 1 of them, I’m here just 4 two moments
now & 4ever...
| Reply With Quote
Rayan's Avatar
Rayan
Mad Rhynoe
Posts/Threads: 3,255/250
Thanks: 863
Thanked 1,517 Times in 1,166 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 826/73701
Rayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond reputeRayan has a reputation beyond repute
Default Posted March 11th, 2007, 06:01 PM #5 (permalink) |
May samjhne ki koshish karrahu...
Every fortune has a crime behind It

So every fortunate person is a criminal


| Reply With Quote
ReeV's Avatar
ReeV
kINg CharMinG
Posts/Threads: 7,339/210
Thanks: 1,774
Thanked 2,489 Times in 1,725 Posts
Nominated 1 Time in 1 Post
TOTW/F/M Award(s): 0
Rep Power/Points: 1354/116868
ReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond reputeReeV has a reputation beyond repute
Default Posted March 11th, 2007, 10:39 PM #6 (permalink) |
Oohhh Man ... Quiet time Killing ... Using JavaScript for this stuffs is actually irritating and Tym Killing ... Try to Use vb.net for this. U'll feel the change obviously ...
"The Best part of Having a Cancer is you can smoke as much as you want" - A Cancer Paitent
| Reply With Quote
mina's Avatar
mina
~Brishti Bilashini~
Posts/Threads: 8,426/651
Thanks: 6,869
Thanked 3,404 Times in 2,163 Posts
Blog Entries: 49
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 1854/166361
mina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond reputemina has a reputation beyond repute
Default Posted March 12th, 2007, 03:19 AM #7 (permalink) |
Yea Reev, but not all corporate server accept VB.NET..for in that matter..some of them prefer Javascript or asp
Some friends forget, Some move away
Some keep silent, Some just change
But I’m not 1 of them, I’m here just 4 two moments
now & 4ever...
| Reply With Quote
mohymen's Avatar
mohymen
Aries The Warrior
Posts/Threads: 20/9
Thanks: 7
Thanked 39 Times in 11 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Rep Power/Points: 0/1951
mohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this pointmohymen is an unknown quantity at this point
Default Posted March 29th, 2007, 05:02 PM #8 (permalink) |
DHTML Calender would be very nice now a day. You could use it and this script supports cross platform.
location is dhtmlgoodies.com

Thanks,
Mohymen
| Reply With Quote
Reply  

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Display Modes
Linear Mode Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Advertisement
Want to advertise? Learn how to remove ads


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Copyright ©2005 - 2008, doshomik.net
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
All times are GMT +7. The time now is 02:09 AM.