摘要: if (window.attachEvent) { window.attachEvent("onload", allLoad); } else if (window.addEventListener) { window.addEventListener("load", allLoad, false); } function allLoad(){//要加载的方法函数 可以添加n个 } 阅读全文
posted @ 2012-04-26 16:02 popoxxll 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 本字符实体参考手册包括了数学符号、希腊字符、各种箭头记号、科技符号以及形状。注释:实体名称对大小写敏感。HTML 支持的数学符号结果描述实体名称实体编号∀for all∀∀∂part∂∂∃exists&exists;∃∅empty∅∅∇nabla∇∇∈isin∈∈∉notin∉∉∋ni∋∋∏prod 阅读全文
posted @ 2012-04-26 16:00 popoxxll 阅读(342) 评论(0) 推荐(0) 编辑
摘要: URL 编码 - 从 %00 到 %8fASCII ValueURL-encodeASCII ValueURL-encodeASCII ValueURL-encodeae%000%30`%60%011%31a%61%022%32b%62%033%33c%63%044%34d%64%055%35e%65%066%36f%66%077%37g%67backspace%088%38h%68tab%099%39i%69linefeed%0a:%3aj%6a%0b;%3bk%6b%0c<%3cl%6cc return%0d=%3dm%6d%0e>%3en%6e%0f?%3fo%6f%10@% 阅读全文
posted @ 2012-04-26 15:58 popoxxll 阅读(1895) 评论(0) 推荐(0) 编辑
摘要: comm.CommandText="insert into Images(Image, contentType) values(@image, @contentType)"; comm.CommandType=CommandType.Text; SqlParameter param=comm.Parameters.Add("@image", SqlDbType.Image); param.Value=content; 似乎一定要采用参数形式如何插入图片: 大致流程:其他图片格式--》image类型的转化--》到MemoryStream流的转换--》到二进 阅读全文
posted @ 2012-04-26 15:49 popoxxll 阅读(301) 评论(0) 推荐(0) 编辑