用户操作
[留言]  [发消息]  [加为好友] 
订阅我的博客
XML聚合    FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
lzj85210的公告
<meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5)"> <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5)"> <p> <h3>日历表</h3> <center> <script language="javascript"> var diarydays=""; </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="/lzj85210/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>
文章分类
存档

原创  牛排大餐 收藏

1
 核桃椒烤小牛排    
小牛排1块(约600克)、芥末、麦芽糖、白醋、红糖、香料各少许、高汤半碗、色拉油适量
 
 
 
1.将小牛排油炸呈金黄色;

2.炸好的小牛排加入高汤、番茄酱、白醋、红糖、麦芽糖、芥末、香料在锅中煮约40分钟;

3.炖煮好的小牛排拼排于盘中,淋上核桃沙司,周围摆饰花样即成.
2
 德国式牛肉巻    
牛肉碎250克、蛋黄2个、洋葱碎3汤匙、芹菜碎2汤匙、意大利香料少许、熟蛋2个、脆皮1块、猪网油1件、芥末沙司少许.
 
 
 
1.洋葱、芹菜切碎备用;

2.洋葱、芹菜加2个生蛋黄和牛肉碎搅拌均匀

3.拌匀的肉馅内包2个去壳的熟蛋,再用猪网油包巻;

4.包好猪网油肉馅,外层包一层脆皮,涂上蛋黄,放入烤箱以220℃烤约45分钟.

5.烤好的牛肉巻横切成数片拼排于盘内,淋上芥末沙司,周围装饰花样即成
3
 威灵顿烤牛肉    
香菇3朵、洋葱碎、磨菇少许、金针菇、草菇少许、白脱油1/3块、鲜奶少许、味精、盐少许、玉桂叶2片、脆皮1块、牛排6盎斯、蛋黄1个.
 
 
 
1.香菇、洋葱、金针菇切丁块备用.

2.备好的牛肉(菲力)放入锅中煎至呈金黄色即可

3.香菇、洋葱、金针菇加白脱油、味精、盐炒熟热

4.用脆皮包牛肉及炒蔬菜,然后在脆皮涂上蛋黄

5.已包好脆皮的牛肉放入烤箱,以220℃烤约8分钟

6.将烤牛肉对切成二份摆放盘内

7.淋上红酒沙司即成
4
 皇冠烧子排    
带骨里肌肉300克、香料少许、米酒半碗、蒜末半匙、味精、盐少许、荷兰沙司少许、黑胡椒粒少许、白脱油1/4块.
 
 
 
1.里肌肉对切成两大块备用;

2里肌肉沾黑胡椒粒至锅中以白脱油煎至熟热;

3.煎好的里肌肉拼排于盘内,淋上荷兰沙司,周围作装饰即可.

发表于 @ 2006年01月22日 05:40:00 | 评论( loading... ) | 编辑| 举报| 收藏

旧一篇:上海菜式 | 新一篇:西式汤

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