摘要:
当你在layout里使用Html.RenderAction加载局布页面的时候,直接进入死循环。 @{ Html.RenderAction("Index", "Status"); }主要问题,在Index的View, 我在Index Action 返回的是VIEW,RenderAction是在_Layout.cshtml中运行,每一个View都会调用_layout.cshtml,调用时候Action又调用View, View又调用_layout.cshtml,所以就进入了死循环。两种解决方案:1、Index Action不返回V... 阅读全文
摘要:
无法删除此对象,因为未在 ObjectStateManager 中找到它-entity framework删除时把删除改为 db.Entry<User>(entity).State = EntityState.Deleted; return db.SaveChanges();就好啦 阅读全文
摘要:
数组-Array创建数组var aColor=new Array();aColor[0]="red";aColor[1]="blue";/************************** 或者***************************///var aColor=new Array("red","blue");//var aColor=["red","blue"];length属性数组.length可读可写document.write(aColor.length 阅读全文
摘要:
序列化类型 System.Data.Entity.DynamicProxies 的对象时检测到循环引用entity famework+asp.net mvc 做code first项目的时候,前台ajax请求到后台JsonResult在后台返回return Json(list, JsonRequestBehavior.AllowGet)的时候,出错:序列化类型 System.Data.Entity.DynamicProxies 的对象时检测到循环引用。解决方法: 1.可以在查询的时候这样子var list = from f in db.Categories ... 阅读全文
摘要:
首先是 public class Address { public string FirstName { get; set; } public string LastName { get; set; } public string Addr { get; set; } public string Street { get; set; } public string City { get; set; } public string ZipCode { get; set; } public string Em... 阅读全文
摘要:
在这里我们使用code frist,User public string UserId { get; set; } public string UserName { get; set; } public virtual IList<Role> Roles { get; set; }Role public string RoleId { get; set; } public string RoleName { get; set; } public virtual IList<User> Users { get; set; }现在,我们要做什么呢?控制两件事 1.关联表的名 阅读全文
摘要:
JQuery获取checkbox值,checkbox全选,操作checkbox别忘记引用JQuery包<!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"><head><meta http-equiv="Conte 阅读全文
摘要:
JQuery操作Select因为很简单,就直接粘贴代码了,别忘记引用 JQuery包<!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"><head><meta http-equiv="Content-Type&q 阅读全文
摘要:
JQuery动态创建DOM、表单元素代码很简单,直接上代码。别忘记引用JQuery包。<!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"><head><meta http-equiv="Content-Type& 阅读全文
摘要:
例如: - a (position 1) - b (position 2) - c (position 3) move c between a and b: cp=1 move a between b and c: cp=2下移位置多加了1,不太清楚为什么,这里提供一种修复方法,也许它不是很好。把"position" : data.rslt.cp + i,换成"position" : data.rslt.o.index() + i,可能对你有所帮助 阅读全文