摘要:
官网:http://www.aspnetboilerplate.com/ 下载 下载完成后用vs2015打开,是2015,低版本打开可能会出现一些问题 生成项目,Nuget会自动下载需要的类库 ABP.Web项目下web.config修改数据库链接 在数据库中新建一个库,与config中名称对应 打 阅读全文
摘要:
在light7上看到他版本号的定义规则,特意拿来分享给大家 语义化版本 2.0.0 版本格式:主版本号.次版本号.修订号,版本号递增规则如下: 主版本号:当你做了不兼容的 API 修改, 次版本号:当你做了向下兼容的功能性新增, 修订号:当你做了向下兼容的问题修正。 先行版本号及版本编译信息可以加到“主版本号.次版本号.修订号”的后面,作为延伸。 http://s... 阅读全文
摘要:
安装NPOI 模板: 结果: 阅读全文
摘要:
/// /// 计算日期的间隔(静态类) /// public static class dateTimeDiff { /// /// 计算日期间隔 /// /// 要参与计算的其中一个日期字符串 /// 要参与计算的另一个日期字符串 /// 一个表示日期间隔的TimeSpan类型 public static TimeSpan ... 阅读全文
摘要:
[HttpPost] public ActionResult PostTest() { //你的业务代码 //...... //要执行的js string js = "window.location.href='/Home/index2';"; return JavaScript(js); } ps 阅读全文
摘要:
需引用System.Dynamic命名空间 来源:http://www.cnblogs.com/ryanding/archive/2010/12/09/1900106.html dynamic Customer = new ExpandoObject(); Customer.Name = "Lucy"; Customer.Age = 20; Customer.Female = true;... 阅读全文
摘要:
推荐一款好用的alert,下面地址是demo,很直观的看到效果,wap可以使用http://www.dglives.com/demo/sweetalert-master/example/ //text:内容 //timer:显示时间 //type:图标类型:success,info,warning 默认info //title:标题 可不填 默认:系统提示 function AlertC... 阅读全文
摘要:
@Html.DropDownListFor(model => model.SchoolId, new SelectList(ViewBag.SelectList, "SchoolTypeId", "Name"), "请选择")//model.SchoolId类型Int ViewBag.SelectList集合 @Html.ValidationMessageFor(mod... 阅读全文
摘要:
XmlDocument xmldoc = new XmlDocument(); string xmlPath = HttpContext.Server.MapPath("~/*****.xml"); xmldoc.Load(xmlPath); XmlElement root = xmldoc.DocumentElement; string node = root.SelectSingleNo... 阅读全文
摘要:
public static string SortParam(T t) { string tStr = string.Empty; if (t == null) { return string.Empty; } System.... 阅读全文