摘要:
max-width: 100%;//父元素的宽度 display: block; margin: 0 auto; display: table-cell; 垂直居中 vertical-align: middle; style="max-width: 100%;max-height: 100%; di 阅读全文
摘要:
HttpRuntime.AppDomainAppPath var fullpath = System.AppDomain.CurrentDomain.BaseDirectory + "appsettings.json"; if (File.Exists(fullpath)) { using (Str 阅读全文
摘要:
<a d ownload class="down" title=""> function download(src,name) { // 创建隐藏的可下载链接 var eleLink = document.createElement('a'); eleLink.href = src; eleLink 阅读全文
摘要:
1. //重命名文件 // 改名方法 FileInfo fi = new FileInfo("旧路径"); //xx/xx/aa.rar fi.MoveTo("新路径"); //xx/xx/xx.rar ... 阅读全文
摘要:
@using System.Text; @{ int js = 1; string str=""; StringBuilder sb = new StringBuilder(); } @foreach (var item in ViewBag.Doctypes) { ... 阅读全文
摘要:
//把一个单独的对象 转换为json字符串 阅读全文
摘要:
#region --基础 ////设置目录树 ////添加根节点 //treeView1.Nodes.Add("0000000"); ////添加子节点 ////treeView1.SelectedNode.Nodes.Add("11111111"); ... 阅读全文
摘要:
非递归绑定3级别 阅读全文
摘要:
this.dataGridView1.Columns.Add("0","001");//添加列 this.dataGridView1.Columns.Add("0", "002"); this.dataGridView1.Columns.Add("0", "003"); this.dataGridV 阅读全文
摘要:
select * from GropBy where [date] BETWEEN '2010-10' and '2015-10' --从字符串转换日期和/或时间时,转换失败。 select * from GropBy where [date] between '2017-07-25 00:00:00' and '2017-07-25 24:00:00' --从字符串转换日期和/或时间时... 阅读全文