摘要: 增成功后EF容器里面的实体不会被销毁,EF查询出来的都是代理类对象或集合//1.0 创建实体 BlogUser usrModel = new BlogUser() { LoginName = "xiaobai1", LoginPwd = "4297F44B13955235245B2497399D7A93", CnName = "小白", Email = "xiaobai@oumind.com", IsD... 阅读全文
posted @ 2014-03-11 01:58 bl84757922 阅读(5926) 评论(0) 推荐(1) 编辑
摘要: select @@scope_identity 阅读全文
posted @ 2014-03-11 00:33 bl84757922 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 好看的绿色:rgb(136, 255, 136)好看的黄色:rgb(253, 253, 6)灰色:color:#808080 阅读全文
posted @ 2014-03-10 15:29 bl84757922 阅读(111) 评论(0) 推荐(0) 编辑
摘要: diagram_图表 EF图表的信息记录文件以XML形式存放 阅读全文
posted @ 2014-03-10 00:25 bl84757922 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 1 //1.定义一个方法 2 function aaa(fu) { 3 console.log(fu); 4 } 5 6 //2.把方法的返回值赋值给变量a 7 //2.1.在没有new的情况下:是直接执行方法,然后把返回值赋值给变量 8 var a = aaa("fu"); 9 10 //3.把方法赋值给变量b,在有new的情况下:是先执行方法体,再创建一个新的方法对象赋值给b11 var b = new aaa("fuB");12 console.log(a);13 console.log(b);14 15 -----------... 阅读全文
posted @ 2014-03-08 11:43 bl84757922 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 1.根据传值名接收//自动匹配相同变量名的参数,属性名一一对应的进行匹配public ActionResult test(IEnumerable items){ foreach(var item in items) { Console.WriteLine(item.ProductID); }}2.简称型:根据值名匹配给第一个DTO的属性1 public ActionResult Test(Dto dto)2 {3 Console.WriteLine(dto.Sort+":"+dto.BindingNo); 4 } 阅读全文
posted @ 2014-03-07 19:20 bl84757922 阅读(355) 评论(0) 推荐(0) 编辑
摘要: $("div").click({msg:message},function(event){ console.log(event.data.msg);})click(data,fn);fn(event){ console.log(data);} 阅读全文
posted @ 2014-03-03 10:57 bl84757922 阅读(251) 评论(0) 推荐(0) 编辑
摘要: var endpointOptions = { isTarget:true, uniqueEndpoint:true,//uniqueEndpoint参数告诉jsPlumb最多应该有一个端点在这个元素。 请注意,maxConnections没有设置:默认为1,所以在此设置中,我们告诉jsPlumb吗aTargetDiv可以得到一个连接,没有更多 endpoint:"Rectangle", paintStyle:{ fillStyle:"gray" } };jsPlumb.makeTarget("aTargetDiv", endpoin 阅读全文
posted @ 2014-03-03 10:55 bl84757922 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 在iframe页面中,获取当前iframe_id方法: var frameId = window.frameElement && window.frameElement.id || '';在父页面中,获取iframe: window.frames数组取得JQ获取iframe里面的元素 $("iframe").contents() 对面iframe里面的元素的操作 $("iframe").contents().find("div .w") 阅读全文
posted @ 2014-03-03 10:45 bl84757922 阅读(194) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Xml.Linq;using Wo 阅读全文
posted @ 2014-02-25 16:14 bl84757922 阅读(309) 评论(0) 推荐(0) 编辑