摘要:
设置.combo-panel {max-height:200px;} 在用到easyui-combobox时,设置panelHeight:'auto' 阅读全文
摘要:
引用log4net.dll AssemblyInfo.cs文件添加:[assembly: log4net.Config.XmlConfigurator(ConfigFile = "configs/log4net.config", Watch = true)](log4net配置文件单独放置) Global全局文件中添加:log4net.Config.XmlConfigurator.Configu... 阅读全文
摘要:
1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Drawing; 5 using System.Linq; 6 using System.Text; 7 us 阅读全文
摘要:
Controller中调用: 阅读全文
摘要:
sql语句: int startRow = (pageIndex - 1) * pageSize + 1; int endRow = pageIndex * pageSize; var sql ="select e.* from (select ROW_NUMBER() OVER(ORDER BY u.CreateTime DESC) AS Rownum,u.* from A as u wher... 阅读全文
摘要:
语法: datepart 参数可以是下列的值: date-part : year | quarter | month | week | day | hour | minute | second | millisecond 参数 date-part 指定要测量其间隔的日期部分。 e.g.: 选择: 下 阅读全文
摘要:
打开网址:http://xxxx.com自动跳转==》http://xxx.com/home/index 设置route入口: 添加Main 阅读全文
摘要:
详情见: http://blog.csdn.net/xifeijian/article/details/12879395 阅读全文
摘要:
借助aapt.exe文件 aapt.exe 解析apk包信息cmd命令: aapt dump badging *.apkaapt d badging *.apk >1.txt(保存成1.txt文件) ProcessStartInfo start = new ProcessStartInfo("cmd 阅读全文
摘要:
public static String ConvertToPinyin(String str) { if (String.IsNullOrEmpty(str)) return String.Empty; var sb = new Strin... 阅读全文