上一页 1 ··· 6 7 8 9 10
摘要: --技巧 先对每个较大DIV的CSS样式设置 border:solid 1px blue 整体布局调整完再去掉1.先弄最外框的View Code 1 <div id="outterDiv">2 3 </div>2.马上加上CSSView Code 1 <style type="text/css">2 3 #outterDiv{ width:600px; }4 5 </style>3.分析布局左右结构View Code 1 <div class="InnerDiv">2 3 & 阅读全文
posted @ 2012-02-09 16:56 一篮饭特稀 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 1 <HTML><HEAD><TITLE>无标题文档</TITLE> 2 <META http-equiv=Content-Type content="text/html; charset=gb2312"> 3 <META content="MSHTML 6.00.2800.1264" name=GENERATOR> 4 <link href="css/css.css" rel="stylesheet" type="text/c 阅读全文
posted @ 2012-02-09 16:50 一篮饭特稀 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 1 <style type="text/css"> 2 div#nifty{ filter:alpha(opacity=20);margin: 0 10%;background:#ECF5FF;} 3 p {filter:alpha(opacity=50);padding:10px} 4 div.rtop, div.rbottom{filter:alpha(opacity=50);display:block;background: #FFF} 5 div.rtop div, div.rbottom div{filter:alpha(opacity=50);dis 阅读全文
posted @ 2012-02-09 16:49 一篮饭特稀 阅读(493) 评论(0) 推荐(1) 编辑
摘要: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta name="Author" content="lsh710,online.hfut.edu.c 阅读全文
posted @ 2012-02-09 16:48 一篮饭特稀 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN"> 3 <head> 4 <title>自由伸展的三栏式版面</title> 5 阅读全文
posted @ 2012-02-09 16:47 一篮饭特稀 阅读(438) 评论(0) 推荐(0) 编辑
摘要: NoiseScene.xml:View Code 1 <pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?> 2 <DataTable> 3 <Rows> 4 <Scene>默认</Scene> 5 <Noise>-100</Noise> 6 </Rows> 7 <Rows> 8 <Scene>高层< 阅读全文
posted @ 2012-02-09 16:32 一篮饭特稀 阅读(237) 评论(0) 推荐(0) 编辑
摘要: C#Regex re = new Regex(@"表达式");if (!re.IsMatch(tbQQ.Text.Trim())){ sb.Append(lbQQ.Text.Trim() + "格式不正确\r\n");}//整数"^([+-]?)\\d+$"//正整数"^([+]?)\\d+$"//... 阅读全文
posted @ 2012-02-09 16:30 一篮饭特稀 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 升序lm_实体名.Sort(delegate(实体名 x, 实体名 y) { returnx.字段.CompareTo(y.字段); });降序lm_实体名.Sort(delegate(实体名 x, 实体名 y) { returny.字段.CompareTo(x.字段); });过滤lm_实体名.Where(a=>a.条件属性==条件 && a.条件属性2== 条件2).ToList();或lm_实体名.FindAll(new Predicate(delegate(实体名 strr) { return strr.条件属性1==条件1&&strr.条件属性2 阅读全文
posted @ 2012-02-09 16:28 一篮饭特稀 阅读(202) 评论(0) 推荐(0) 编辑
摘要: WebService:View Code 1 [WebService(Namespace = "http://tempuri.org/")] 2 [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 3 public class WebService : System.Web.Services.WebService { 4 5 public WebService () { } 6 7 [WebMethod] 8 public string getConnectionString()... 阅读全文
posted @ 2012-02-09 16:24 一篮饭特稀 阅读(1205) 评论(0) 推荐(2) 编辑
摘要: 1.新建一个网站“F:\WorkSpace\其它\WebService”,在网站下建一个WebService.asmx文件,内容如下:View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Services; 6 [WebService(Namespace = "http://tempuri.org/")] 7 [WebServiceBinding(ConformsTo = WsiProf 阅读全文
posted @ 2012-02-09 16:15 一篮饭特稀 阅读(1025) 评论(0) 推荐(2) 编辑
上一页 1 ··· 6 7 8 9 10