06 2009 档案

摘要:!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"html xmlns="http://www.w3.org/1999/xhtml" style=""head titleUntitled Page/title style * { padding:0; margin:0;} body{height:100%;overflow:hidden;position:relative;line-h 阅读全文
posted @ 2009-06-23 17:28 ljlxyf 阅读(204) 评论(0) 推荐(0) 编辑
摘要:htmlheadstyle!--#table {width:701px!important;width:700px;border-top:1px #000 solid;}#table ul {margin:0px;padding:0px;width:701px!important;width /**/:700px;list-style-type:none;border-bottom:0px #000 solid;border-left:0px #000 solid;}#table li {float:left;display:block;margin:0px;padding:0p 阅读全文
posted @ 2009-06-18 13:03 ljlxyf 阅读(196) 评论(0) 推荐(0) 编辑
摘要:/// summary /// 调用函数 /// /summary /// param name="sender"/param /// param name="e"/param protected void Button1_Click(object sender, EventArgs e) { Response.Write(GB2312ToUTF8("大家好,欢迎访问 http://www.my400800.cn ")); } /// summary /// 转换GB2312 的字符串为UTF8编码 /// /summary /// param name="s 阅读全文
posted @ 2009-06-15 11:38 ljlxyf 阅读(269) 评论(0) 推荐(0) 编辑
摘要:SCRIPT LANGUAGE="JavaScript"!--var s = ""; s += " 网页可见区域宽:"+ document.body.clientWidth; s += " 网页可见区域高:"+ document.body.clientHeight; s += " 网页可见区域宽:"+ document.body.offsetWidth + " (包括边线和滚动条的宽)"; s += " 网页可见区域高:"+ document.body.offsetHeight + " (包括边线的宽)"; s += " 网页正文全文宽:"+ document.body.scr 阅读全文
posted @ 2009-06-10 16:28 ljlxyf 阅读(185) 评论(0) 推荐(0) 编辑
摘要:CSS对浏览器器的兼容性具有很高的价值,通常情况下IE和Firefox存在很大的解析差异,这里介绍一下兼容要点。  常见兼容问题:  1.DOCTYPE 影响 CSS 处理  2.FF: div 设置 margin-left, margin-right 为 auto 时已经居中, IE 不行  3.FF: body 设置 text-align 时, div 需要设置 margin: auto(主要是 margin-left,margin-right) 方可居中  4.FF: 设置 padding 后, div 会增加 height 和 width, 但 IE 不会, 故需要用 !importa 阅读全文
posted @ 2009-06-10 14:47 ljlxyf 阅读(127) 评论(0) 推荐(0) 编辑
摘要:c#实现GB2312和UTF8字符编码方式的转换public string UTF8ToGB2312(string str) { try { Encoding utf8 = Encoding.GetEncoding(65001); Encoding gb2312 = Encoding.GetEncoding("gb2312");//Encoding.Default ,936 byte[] temp = utf8.GetBytes(str); byte[] temp1 = Encoding.Convert(utf8, gb2312, temp); string result = gb2312. 阅读全文
posted @ 2009-06-10 08:44 ljlxyf 阅读(822) 评论(0) 推荐(0) 编辑