摘要:
Expression> expre = expression; var q = db.order_info; IQueryable query = q; if (expre != null) { ... 阅读全文
摘要:
“由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面” 详细错误:HTTP 错误 404.2 - Not Found. 由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面.操作环境:window7+IIS7.5解决方法点击IIS... 阅读全文
摘要:
1、ViewData对象 ViewBagData是一种字典集合数据同时属于视图基类和控制器基类的属性。 实例: //控制器public class HomeController:Controller{ public ActionResult Index() { ... 阅读全文
摘要:
原文转自:http://www.cnblogs.com/yeagen/archive/2012/09/24/2700836.htmlASP.NET MVC3中的Model是自验证的,这是通过.NET4的System.ComponentModel.DataAnnotations命名空间完成的。 我们要... 阅读全文
摘要:
/// /// 返回insert后的主键值 /// /// /// /// public static int ExecuteSql(string SQLString, List para) ... 阅读全文
摘要:
//访问动态创建access数据库 string conn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("/Catering/") + ".accdb"; ... 阅读全文
摘要:
.net(c#)提取多层嵌套的JSON博客转自:http://hi.baidu.com/hyg2006/item/72988228d1edd8f850fd87ee?qq-pf-to=pcqq.c2cNewtonsoft.Json.Net20.dll 下载请访问http://files.cnblogs... 阅读全文
摘要:
/// /// 时间戳转为C#格式时间 /// /// /// static public DateTime GetTime(string timeStamp) { DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); long lTime = long.Parse(timeStamp + "0000000"); ... 阅读全文
摘要:
asp.net mvc 3 linq实现数据的增、删、改、查、添加数据定义一个对象:public class Student{ public int id{get; set;} public string Name{get;set;} public string Age{get;set;}}将其添加到上下文中: publicDbSet student{get;set;}增加一条数据: 要添加一个上下文比如就叫 private StudentEntities db = new StudentEntities(); Student stu=new Studen... 阅读全文