用户操作
[留言]  [发消息]  [加为好友] 
订阅我的博客
XML聚合    FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
leida1983的公告
<div id="blogmap"> <SCRIPT LANGUAGE="JavaScript" src="http://blog.mapbar.com/blogmap/showmap.jsp?nid=05090111341305780791"></SCRIPT> </div> <br> <a href="callto://leida1983"><img src="http://goodies.skype.com/graphics/skypeme_btn_green.gif" border="0"></a> <br><br> <script src=http://www.oh100.com/serverfold/counter/count.php?account=leida1983></script> <br><br><br> <img src="http://www.4gbbs.com/avatar.php?userid=1459&dateline=1108041863" ><br><br><br> <script type="text/javascript"><!-- google_ad_client = "pub-2780373946027554"; google_ad_width = 180; google_ad_height = 150; google_ad_format = "180x150_as"; google_ad_channel =""; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <br><br><br><br> <!-- Blog日历表开始 --> <script language="javascript"> var diarydays="";//"<2004-07-26><2004-07-25><2004-07-22><2004-07-21><2004-07-20><2004-07-19><2004-07-18><2004-07-16><2004-07-15><2004-07-14><2004-07-13><2004-07-12><2004-07-11><2004-07-10><2004-07-09><2004-07-08><2004-07-06><2004-07-05><2004-07-04><2004-07-03><2004-07-02><2004-07-01><2004-06-30><2004-06-27><2004-06-26>"; </script> <style> .calendarBigBorder { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; text-decoration: none; width: 170; background-color: #FFFFFF; font-size: 9pt;border:1px dotted #999; } .calendarTd { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #000000; background-color: #eeeeee; height: 18px; width: 11%; text-align: center;} .calendarMInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; text-decoration: none; background-color: #FFFFFF; height: 15px; border: 1px solid #666666; width: 19px; color: #0099FF;} .calendarYInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #0099FF; text-decoration: none; background-color: #FFFFFF; height: 15px; width: 34px; border: 1px solid #666666;} .calendarMonthTitle { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; height: 24px; text-align: center; color: #333333; text-decoration: none; background-color: #eeeeee; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-bottom-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999;} .calendarNow { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: bold; color: #000000; background-color: #C0C9D3; height: 18px; text-align: center;} .calendarDaySat { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} .calendarDaySun { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} .calendarLink { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; color: #333333; text-decoration: none; background-color: #E7E7F6; text-align: center; height: 18px;} .categoryTxt { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; line-height: 23px; color: #333333; text-decoration: none;} .categoryTable { border-right-width: 1px; border-bottom-width: 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: none; border-right-color: #000000; border-bottom-color: #000000; border-top-width: 1px; border-top-style: solid; border-top-color: #71b99c;} </style> <SCRIPT LANGUAGE="JavaScript"> var months = new Array("一", "二", "三","四", "五", "六", "七", "八", "九","十", "十一", "十二"); var daysInMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31,30, 31, 30, 31); var days = new Array("日","一", "二", "三","四", "五", "六"); var classTemp; var calendarHover="calendarHover"; var today=new getToday(); var year=today.year; var month=today.month; var newCal; //得到某月天数 function getDays(month, year) { if (1 == month) return ((0 == year % 4) && (0 != (year % 100))) ||(0 == year % 400) ? 29 : 28; else return daysInMonth[month]; } //得到当天时间信息 function getToday() { this.now = new Date(); this.year = this.now.getFullYear(); this.month = this.now.getMonth(); this.day = this.now.getDate(); } //生成日历 function Calendar() { newCal = new Date(year,month,1); //当前月的第一天 today = new getToday(); var day = -1; //用来判断日历中是否为当天 var startDay = newCal.getDay(); //当月开始时间 var endDay=getDays(newCal.getMonth(), newCal.getFullYear());//当月结束时间 var daily = 0; //用来生成日历中的天数值 if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth())) day = today.day; var caltable = document.all.caltable.tBodies.calendar; //得到日历表格的集合 var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear()); //得到当月天数 //生成日历 for (var intWeek = 0; intWeek < caltable.rows.length;intWeek++) for (var intDay = 0;intDay < caltable.rows[intWeek].cells.length;intDay++) { var cell = caltable.rows[intWeek].cells[intDay]; //得到单元袼 //生成字符串用于判断当天是否有日志 var montemp=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); if ((intDay == startDay) && (0 == daily)){ daily = 1;} var daytemp=daily<10?("0"+daily):(daily); var d="<"+newCal.getFullYear()+"-"+montemp+"-"+daytemp+">"; //选择样式 if(day==daily) cell.className="calendarNow"; else if(diarydays.indexOf(d)!=-1) cell.className="calendarLink"; else if(intDay==6) cell.className = "calendarDaySat"; else if (intDay==0) cell.className ="calendarDaySun"; else cell.className="calendarTd"; //生成值 if ((daily > 0) && (daily <= intDaysInMonth)) { cell.innerText = daily; daily++; } else cell.innerText = ""; } document.all.year.value=year; document.all.month.value=month+1; } function subMonth() { if ((month-1)<0) { month=11; year=year-1; } else { month=month-1; } Calendar(); } function addMonth() { if((month+1)>11) { month=0; year=year+1; } else { month=month+1; } Calendar(); } //得到响应事件 function getDiary() { var mon=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); var day=event.srcElement.innerText<10?("0"+event.srcElement.innerText):(event.srcElement.innerText); var d="<"+newCal.getFullYear()+"-"+mon+"-"+day+">"; if ("TD" == event.srcElement.tagName) if (("" != event.srcElement.innerText)&&(diarydays.indexOf(d)!=-1)) { diary.location="/chensheng913/archive/"+newCal.getFullYear()+"/"+mon+"/"+day+".aspx"; window.location.href = diary.location; } } function setDate() { if (document.all.month.value<1||document.all.month.value>12) { alert("月的有效范围在1-12之间!"); return; } year=Math.ceil(document.all.year.value); month=Math.ceil(document.all.month.value-1); Calendar(); } </SCRIPT> <table border="0" cellpadding="0" cellspacing="1" class="calendarBigBorder" id="caltable" width="200"> <thead> <tr align="center" valign="middle"> <td colspan="7" class="calendarMonthTitle"> <input name="year" type="text" class="calendarYInput" size="3" maxlength="4" onkeydown="if (event.keyCode==13){setDate()}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onpaste="this.value=this.value.replace(/[^0-9]/g,'')"> 年 <input name="month" type="text" class="calendarMInput" size="1" maxlength="2" onkeydown="if (event.keyCode==13){setDate()}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onpaste="this.value=this.value.replace(/[^0-9]/g,'')"> 月 <a onClick="addMonth()" href="javascript:;">下月</a> : <a onClick="subMonth()" href="javascript:;">上月</a></td> </tr> <tr align="center" valign="middle"> <SCRIPT LANGUAGE="JavaScript"> document.write("<TD class=calendarDaySun id=diary>" + days[0] + "</TD>"); for (var intLoop = 1; intLoop < days.length-1; intLoop++) document.write("<TD class=calendarTd id=diary>" + days[intLoop] + "</TD>"); document.write("<TD class=calendarDaySat id=diary>" + days[intLoop] + "</TD>"); </SCRIPT> </TR> </thead> <TBODY border=1 cellspacing="0" cellpadding="0" ID="calendar" ALIGN=CENTER ONCLICK="getDiary()" onmouseup=document.selection.empty() oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onbeforecopy="return false" oncopy=document.selection.empty() onselect=document.selection.empty()> <SCRIPT LANGUAGE="JavaScript"> for (var intWeeks = 0; intWeeks < 6; intWeeks++) { document.write("<TR style='cursor:hand'>"); for (var intDays = 0; intDays < days.length;intDays++) document.write("<TD class=calendarTd onMouseover='{classTemp=this.className;this.className=calendarHover}' onMouseOut='this.className=classTemp'></TD>"); document.write("</TR>"); } </SCRIPT> </tbody> </table> <script LANGUAGE="JavaScript"> Calendar(); </script> <!-- Blog日历表结束 --> <br> <a href="http://www.spreadfirefox.com" target="_blank"><img src="http://blog.csdn.net/images/blog_csdn_net/leida1983/68871/o_get.gif" border="0"></a> <br> <br> <br> <br> <!--EMBED src=mms://218.16.123.150:1755/Mediaz/MUSIC/00/000012300/000012425/audio/asf_h/000012425001009.asf type=audio/mpeg--> <SCRIPT> <!-- function change(url) { MediaPlayer.FileName = url; MediaPlayer.AutoStart="True"; } ---> </script> <IMG src="http://www.ouifr.com/images/99.gif" border=0></A>
文章分类
X-BOOK
夭夭的X-BOOK
我的X-BOOK
聞聞的X-BOOK
骚别的X-BOOK
高手BLOG
Jeff Key(RSS)
John Kennedy's WebLog(RSS)
好友博客
PIPI猪的BLOG
可爱的猪猪
婷宝的博客
我的白痴老师BLOG
闻闻的BLOG
收藏
MSDN Home Page
The Beatles
The Official Secret Garden Homepage
五月天官方网站
四季论坛
麻省理工学院的「开放式课程网页」
存档
2005年08月20日

原创 笑死你我不负责

暴笑阅读全文>

发表于 @ 2005年08月20日 18:47:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年06月15日

原创 基于HTTP的QQ协议之我所见

日期:2005年6月7日 作者:清风网络学院阅读全文>

发表于 @ 2005年06月15日 12:02:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年04月29日

原创 Linux下Tomcat的安装

Linux下Tomcat的安装阅读全文>

发表于 @ 2005年04月29日 11:38:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年04月28日

原创 在LINUX下配置JAVA开发环境

在LINUX下配置JAVA开发环境阅读全文>

发表于 @ 2005年04月28日 23:56:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年04月04日

原创 钱真的能买到一切吗 你的女朋友到底值多少钱?

一个简单的测试可能会告诉我们很多的东西。阅读全文>

发表于 @ 2005年04月04日 12:38:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年03月28日

原创 在Web页中使用Media Player

找了好久 总算找到了阅读全文>

发表于 @ 2005年03月28日 18:21:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年03月27日

原创 为 Windows Media Player 9 系列设计辅助外观

本文描述了一些用于开发可由残疾人士访问的 Windows Media Player 外观的最佳做法。本文介绍了设计辅助外观时需要牢记的一些主要原则,并描述了该播放器所公开的、用于简化辅助外观的编程元素。阅读全文>

发表于 @ 2005年03月27日 22:44:00 | 评论( loading... ) | 编辑| 举报| 收藏

原创 ASP.NET WEB FORMS 页面间的传值方法

asp.net web forms 给开发者提供了极好的事件驱动开发模式。然而这种简单的应用程序开发模式却给我们带来了一些小问题,举个例子,在传统的asp应用程序中,你能够通过post方法很容易的把一个值或多个值从一个页面传送到另一个页面,用同样的方法在asp.net中实现有点麻烦。在这里,我们可以通过其他方式来解决这种情形。asp.net为我们提供了三种方式,一种是可以通过用querystring来传送相应的值,再一种是通过session变量来传送相应的值,还有就是通过server.transfer方法来实现。下面分别一一介绍:阅读全文>

发表于 @ 2005年03月27日 20:05:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年03月25日

原创 ASP.NET Session State

The code in this article is targeted for the beta version of Microsoft .NET. Some of the code may require reworking in order to function correctly on later versions of the .NET Framework.阅读全文>

发表于 @ 2005年03月25日 14:05:00 | 评论( loading... ) | 编辑| 举报| 收藏

原创 Using ASP.NET Session State in a Web Service

One of the most common challenges that Web developers encounter is maintaining state in the stateless world of HTTP. There have been a number of clever means used to get around the stateless issue, from reposting application data with each request, to using HTTP authentication to map requests to specific users, to using HTTP cookies to preserve the state of a series of requests. One particularly clever way of maintaining state that hides all the challenging work below is to simply use the Micros阅读全文>

发表于 @ 2005年03月25日 13:59:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年03月24日

原创 让你的YAHOO邮箱支持POP

YAHOO邮箱支持 POP 功能阅读全文>

发表于 @ 2005年03月24日 21:00:00 | 评论( loading... ) | 编辑| 举报| 收藏

原创 用C#获取系统内存

需要引用System.Management阅读全文>

发表于 @ 2005年03月24日 12:27:00 | 评论( loading... ) | 编辑| 举报| 收藏

2005年03月23日

原创 C#实现Window管道技术

C#实现Window管道技术阅读全文>

发表于 @ 2005年03月23日 23:07:00 | 评论( loading... ) | 编辑| 举报| 收藏

第1页,共11页
第一页上一页下一页最后一页
Copyright © leida1983
Powered by CSDN Blog