上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: 第15章 Math objectMath propertytoString() 及进位基数<script>x=100a=x.toString(2)b=x.toString(10)c=x.toString(16)document.write(a+"<br>"+b+"<br>"+c)</script>15.2 Math method1. Math.abs... 阅读全文
posted @ 2009-06-19 14:28 teacherzj 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 7.8 Specila Operators1. ?:(a>b? 'greater':'smaller')2. comma operator<script>for(s=10,y=1;x>=1;x--,y++){for(a=x;a>=1;a--){ document.write('S');}for(b=1;b<=y;b++){ document.write('T')... 阅读全文
posted @ 2009-06-18 15:06 teacherzj 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 3.1 Alert 对话框<input name="btn" type="button" onClick="alert('你是坏人');" value="弹出一个对话框" />3.2 Confirm 对话框<script>function con(){if(confirm("确定还是取消")){alert("你按了确定");}else{alert("你按了取消");}}&l... 阅读全文
posted @ 2009-06-12 10:37 teacherzj 阅读(182) 评论(0) 推荐(0) 编辑
摘要: JavaScript能力和不及之处缺点1、JavaScript不能在Client的硬盘读出或写进档案(除了Cookies)2、JavaScript不能保密,可以看到原始码。3、没有server-side程序,不能在server开启档案或放下可记录的数据,唯一可与外界联络的方法是以Email的方式送出数据。一句话,JavaScript是纯粹的浏览器软件。*JavaScript是一个对象为本的语言它可... 阅读全文
posted @ 2009-06-11 14:50 teacherzj 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 第一单元 色彩的构成*色彩的三属性:色相、明度、纯度。*色相(Hue)指色的相貌与名称。色轮是表示最基本色相关系的色表。色轮上90度角内的几种色彩称作同类色,也叫近邻色。90度角以外的色彩称为对比色。色轮上相对位置的色叫补色,也叫相反色。*明度(Value或Brightnese)人眼之所以能看到物体的明暗,是因为物体所反射色光的光量(热量)有差异之缘故。光量越多,明度越高,反之明度越低。色料的色彩... 阅读全文
posted @ 2009-06-10 10:39 teacherzj 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 金旭亮老师的四篇讲asp.net原理的文章:1. 《IIS架构与HTTP请求处理流程(1)》2. 《IIS架构与HTTP请求处理流程(2)》 3. 《IIS架构与HTTP请求处理程序(3)》4. 《ASP.NET管线与应用程序生命周期》 阅读全文
posted @ 2009-06-09 15:26 teacherzj 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 关注Session很长时间了.最早时用Session做网站的登录和退出.验证基类public class BasePage:Page { protected void Page_Init(object sender, EventArgs e) { if (Session["admin"] == null || Session["admin"].ToString() != "Y") Response... 阅读全文
posted @ 2009-05-27 22:26 teacherzj 阅读(206) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/deymmtd/archive/2009/01/15/1376487.html 阅读全文
posted @ 2009-05-17 22:38 teacherzj 阅读(138) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/jianxiong8814/archive/2008/03/03/2142442.aspx 阅读全文
posted @ 2009-05-16 21:10 teacherzj 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 基于aspnet Forms身份验证基本原理 Asp.Net Forms验证(自定义、角色提供程序、单点登录) 阅读全文
posted @ 2009-05-08 13:19 teacherzj 阅读(475) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页