摘要:
1.创建数据模型类 public partial class SmsPush { [Key] public int Id { get; set; } [MaxLength(128)] public string AppName { get; set; } [DataType(DataType.Tex 阅读全文
摘要:
1,安装Microsoft.AspNetCore.Mvc.Versioning NET Core Mvc中,微软官方提供了一个可用的Api版本控制库Microsoft.AspNetCore.Mvc.Versioning。 2,修改Startup类 这里我们需要在Startup类的ConfigureS 阅读全文
摘要:
在C#中循环显示SESSIOn: Response.Write("<br>Session的所有值:<br>"); foreach (string obj in Session.Contents) { Response.Write(obj.ToString() + ":" + Session[obj] 阅读全文
摘要:
SQL Server T-SQL高级查询 高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 selec 阅读全文
摘要:
SmtpClient smtp = new SmtpClient(); //实例化一个SmtpClient smtp.DeliveryMethod = SmtpDeliveryMethod.Network; //将smtp的出站方式设为 Network smtp.EnableSsl = false; 阅读全文
摘要:
[html] view plain copy <!-- parent是指取得一个包含着所有匹配元素的唯一父元素的元素集合。 parents则是取得一个包含着所有匹配元素的祖先元素的元素集合(不包含根元素)。可以通过一个可选的表达式进行筛选。 parent取得很明确就是当前元素的父元素 parents 阅读全文
摘要:
一、C# 日期格式 DateTime dt = DateTime.Now; dt.ToString();//2005-11-5 13:21:25 dt.ToFileTime().ToString();//127756416859912816 dt.ToFileTimeUtc().ToString() 阅读全文
摘要:
1. 内容优先,表现为辅 2. css命名中英文对照 current 当前 hover 悬停 selected 挑选 disabled 禁用 focus 得到焦点 blur 失去焦点 checked 勾选 success 成功 error 出错 header(hd) 头部 content(cnt) 阅读全文
摘要:
//2008年4月24日 System.DateTime.Now.ToString("D"); //2008-4-24 System.DateTime.Now.ToString("d"); //2008年4月24日 16:30:15 System.DateTi... 阅读全文