用户操作
[留言]  [发消息]  [加为好友] 
订阅我的博客
XML聚合    FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
ZOU_SEAFARER的公告
<center> <h3></h3> <font color="RED" size="4">国际海员 </font> </center> <script language="javascript"> var diarydays="<2006-01-27><2006-01-26><2006-01-15><2006-01-02><2006-01-01><2005-12-27><2005-12-16><2005-11-09><2005-10-19><2005-10-17><2005-10-14><2005-10-12><2005-10-11><2005-10-09><2005-10-02><2005-09-26><2005-09-22><2005-08-27><2005-08-25><2005-08-23><2005-08-21><2005-08-15><2005-08-07><2005-07-19><2005-07-08><2005-07-06><2005-07-04><2005-07-03><2005-06-22><2005-06-20><2005-06-15><2005-06-08><2005-06-07><2005-06-06><2005-05-31><2005-05-30><2005-05-25><2005-05-13><2005-05-08><2005-04-26><2005-04-25><2005-03-06><2005-02-24><2005-02-20><2005-02-15><2005-02-12><2005-02-11><2005-02-08><2005-02-06><2005-01-10><2005-01-02><2004-12-29><2004-12-25><2004-12-14><2004-12-13><2004-12-10><2004-12-04><2004-12-04><2004-12-03><2004-12-02><2004-11-26><2004-11-23><2004-11-22><2004-11-19><2004-11-18><2004-11-17><2004-11-02><2004-10-30><2004-10-13><2004-10-12><2004-09-16><2004-08-23><2004-07-11><2004-07-09><2004-07-08><2004-07-07><2004-07-06><2004-07-05><2004-07-04>"; </script> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <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: 8pt; text-decoration: none; background-color: #FFFFFF; height: 16px; border: 1px solid #666666; width: 19px; color: #0099FF; margin: 0px 5px; text-align: center;} .calendarYInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 8pt; color: #0099FF; text-decoration: none; background-color: #FFFFFF; height: 16px; width: 34px; border: 1px solid #666666; margin: 0px 5px; text-align: center;} .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="/sun_jianhua/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" onFocus="this.select()" 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" onFocus="this.select()" 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="subMonth()" href="javascript:;"><<</a> <a onClick="addMonth()" 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> </center> <p> <div> <!--sina热点新闻--> <table width="150" height="14" border="0" cellpadding="0" cellspacing="0"> <tr> <td height=14 nowrap><font color=#FF0000" >快讯:</font> </td> <td width="135" nowrap> <!--sina热点新闻--> <iframe name=sina_roll src=http://news.sina.com.cn/o/allnews/input/index.html height=14 width=135 Frameborder=No Border=0 Marginwidth=0 Marginheight=0 Scrolling=No> </iframe> </td> <tr> </table> <hr noshade color="#D8D8D8"> <!--添加搜索引擎--> <table width="140" border="0" bgcolor="F5F5F5" cellpadding="0" cellspacing="0"> <tr> <!--google的搜索脚本--> <script> var strQ="http://www.google.com/search?lr=lang_zh-CN&q="; </script> <td colspan="2"><a href="http://www.google.com" target="_blank"> <img border="0" height="27" alt="google" src="http://www.google.com/logos/Logo_25wht.gif"></a><font style="font-size:11pt; height:17pt;color:blue" >中文搜索</font> </td> </tr> <tr> <td><input name="q" type="text" value="" style="font-size:9pt" size="15"></td> <td> <input name="btnG" type="button" value="google搜索" style="width:70;font-size:9pt" onclick="window.open(strQ+encodeURIComponent(document.all.q.value))"></td> </tr> <!-- Gsuo 地图 --> <tr> <script TYPE="text/javascript" > var strMapGsuoQ = "http://www.gsuo.com/mstmap50007/g_detail.jsp?g_mapid=21&g_label="; function show_map() { var addr = encodeURIComponent(encodeURIComponent(encodeURIComponent(document.all.mapGsuoQ.value))); var strURL=strMapGsuoQ+addr +"&keyname="+addr; window.open(strURL); return true; } </script> <td colspan="2" bgcolor="F5F5F5"><a href="http://www.gsuo.com" target="_blank"> <image src="http://www.gsuo.com/images/logo31.gif" border="0" height="27" alt="上海地图公交查询"><font style="font-size:10pt; height:17pt" >上海地图查询</font></a></td> </tr> <tr> <td><input name="mapGsuoQ" type="text" value="" style="font-size:9pt" size="15"></td> <td><input name="btnG" type="button" value="Gsuo 搜索" style="width:70;font-size:9pt" onclick="show_map()"></td> </tr> </table> </div> <h3></h3> <font color="BLACK" size="1">MSN:yongjun-zou@hotmail.com</font> <div style="background-image:url('http://blog.csdn.net/images/blog_csdn_net/laily/17459/o_bline.gif');"> <div style="height:132;overflow:hidden;"> <embed src="http://www.clocklink.com/Clocks/0001-green.swf?TimeZone=CCT" width="150" height="150" _style="position:absolute;z-index:2;top:85;left:133;" wmode="transparent" type="application/x-shockwave-flash"> </div> </div> <script type="text/javascript" src="http://settings.messenger.live.com/controls/1.0/PresenceButton.js"></script> <div id="Microsoft_Live_Messenger_PresenceButton_6d219a7fcdbe0b88" msgr:width="100" msgr:backColor="#D7E8EC" msgr:altBackColor="#FFFFFF" msgr:foreColor="#424542" msgr:conversationUrl="http://settings.messenger.live.com/Conversation/IMMe.aspx?invitee=6d219a7fcdbe0b88@apps.messenger.live.com&mkt=zh-cn"></div> <script type="text/javascript" src="http://messenger.services.live.com/users/6d219a7fcdbe0b88@apps.messenger.live.com/presence?dt=&mkt=zh-cn&cb=Microsoft_Live_Messenger_PresenceButton_onPresence"></script>
文章分类
技术带头人
叶帆软件
邹建数据库
智能设备开发
克伟的博客
初学博闻
开发历程知识库
存档

原创  糟糕的心情 收藏

                 腰和肩膀越来越疼,大概是长时间不运动的原因吧。伴随着身体的疼痛,自己的心情也跌入了深谷,

自己用一种莫名的悲哀。一直想找一个机会和自己的同事探讨面向对象开发,编程规范的意义,可是被人阻止。唉,我很叛逆,不仅因为这样,也因为公司高层不重视软件开发,而注重日语的学习。这些都让我很无奈,

     如果我越晚和同事探讨(指导吧),对他们以后的路也不好走,现在的他们,不管对语言掌握程度如何,一概使用以前惯用的思维面向过程来使用NET开发,NET的优势在他们手里,不是一个展现艺术的画笔,而已挖掘土豆的锄头而已,不管挖掘出来的土豆是否完整,只要能能出就好。

    我一直觉得我有那么一散门没有被打开,是通往程序世界的大门,我承认我自己学习能力很强,软件设计开发的基础很不错,就是不能成为高手,默默的等待了3年之久。。。。。。

我要改变,我喜欢net,更加喜欢c#。

  20090527

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

旧一篇:彻底结束EXCEL进程 | 新一篇:c#模块开发系列01(UDP通讯模块)

  • 发表评论
  • 评论内容:
  •  
Copyright © ZOU_SEAFARER
Powered by CSDN Blog