一根水竹

悄悄扒回家做钓鱼杆

导航

2007年4月5日 #

繁体机文本转换

摘要: Encoding big5 = Encoding.GetEncoding("big5"); Encoding abc = Encoding.Default; string s = "い瓣.約狥 "; byte[] t = Encoding.Convert(big5,abc,abc.GetBytes(s)); ... 阅读全文

posted @ 2007-04-05 17:30 樊蓉华 阅读(552) 评论(2) 推荐(0)

2007年1月15日 #

BOOK19868595

摘要: C#高级编程(第4版)http://product.dangdang.com/product.aspx?product_id=9222502 框架设计(第2版):CLR Via C#http://product.dangdang.com/product.aspx?product_id=9226773C#设计模式——开发大师系列http://product.dangdang.com/product.... 阅读全文

posted @ 2007-01-15 20:29 樊蓉华 阅读(130) 评论(0) 推荐(0)

2006年12月6日 #

IE内渐变颜色样式

摘要: filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#015D8E,endcolorstr=#5FA8D3,gradientType=1); 阅读全文

posted @ 2006-12-06 11:48 樊蓉华 阅读(206) 评论(0) 推荐(0)

IE滚动条样式

摘要: BODY { scrollbar-face-color: #D8E2E7; scrollbar-shadow-color: #D8E2E7; scrollbar-highlight-color: #FFFFFF; scrollbar-3dlight-color: #96AABD; scrollbar-darkshadow-color: #96AABD; scrollbar-track-colo... 阅读全文

posted @ 2006-12-06 11:46 樊蓉华 阅读(219) 评论(0) 推荐(0)

2006年11月2日 #

让层(DIV)中一区域位置固定的CSS样式

摘要: .fixedHeaderTr { POSITION: relative; TOP: expression(this.offsetParent.scrollTop)} 阅读全文

posted @ 2006-11-02 17:28 樊蓉华 阅读(501) 评论(0) 推荐(0)

2006年10月20日 #

WebService 权限

摘要: 代码示例: System.Net.NetworkCredential mycredential= new System.Net.NetworkCredential(); mycredential.UserName = "myname"; mycredential.Password = "mypassword"; mycredential.Domain = "mydomain"; webservic... 阅读全文

posted @ 2006-10-20 10:46 樊蓉华 阅读(512) 评论(0) 推荐(0)