摘要:
直接上代码: //获取附件中的链接地址 function get_file_path_from_encode_value(x) { var arrLink = []; x.replace(/<a [^>]*path=['"]([^'"]+)[^>]*/gi, function (match, cap 阅读全文
该文被密码保护。 阅读全文
摘要:
//新增或者修改数据的时候给输入控件绑定下拉值。function load_suoshugaoxiao() { common_post.postPortal({ "ac": "get_data_by_sql_back_data_table_from_portal_with_table_id", "s 阅读全文
摘要:
银行:<select id="sl_bank" class="fsbpmserachcontrol search_select" myts="sl"></select> 状态:<select id="sl_status_filter" class="fsbpmserachcontrol search 阅读全文
摘要:
<!--做数据的流转状态操作001--><div class="div_bottom_control_location_area" id="div_rejected_or_approved"> <button onclick="submit_or_reject_for_review(0)" type 阅读全文
摘要:
代码: DataTable dataTable = new DataTable();dataTable.Columns.Add("ID");DataRow dataRow = dataTable.NewRow();dataRow.ItemArray = new[] {"111"};dataTable 阅读全文
摘要:
public class DataDemo { private static Dictionary<string, string> dictionary = new Dictionary<string, string>(); static DataDemo() { Console.WriteLine 阅读全文
摘要:
1、 连接ftp服务器 ftp下载命令:格式:ftp [hostname| ip-address] a)在linux命令行下输入: ftp 192.168.1.1 b)服务器询问你用户名和密码,分别输入用户名和相应密码,待认证通过即可。 2、 下载文件 下载文件通常用get和mget这两条命令。 a 阅读全文
摘要:
BigDecimal a = new BigDecimal("0.01");BigDecimal b = new BigDecimal("0.010000");System.out.println(a.equals(b));//falseSystem.out.println(a.compareTo( 阅读全文
摘要:
DataType >ConnectionStringDataType.MySql >Data Source=127.0.0.1;Port=3306;User ID=root;Password=root; Initial Catalog=cccddd;Charset=utf8; SslMode=non 阅读全文
摘要:
exec sp_changeobjectowner '[namespace].[TableXXX]', 'dbo' 把表TableXXX的所有者改为dbo 阅读全文
摘要:
Hashtable和Dictionary都是.Net下的表示键值对的集合,那么我们在使用中该选择Hashtable还是Dictionary?下边我们看看他们之间的区别: 1、Dictionary<K,V>在使用中是顺序存储的,而Hashtable由于使用的是哈希算法进行数据存储,是无序的。 2、Di 阅读全文
摘要:
public static string get_val_by_key(this Dictionary<string, string> dictionary, string key) => dictionary == null || !dictionary.ContainsKey(key) ? "" 阅读全文
摘要:
C# 操作DataTable数据量达到6000条左右的时候会出现性能问题。 调试模式会直接报错:内存溢出。 编译的运行程序则会直接退出。 只能减少数据量。 阅读全文
摘要:
nohup dotnet /www/wwwroot/xxx.dll --urls "http://*:6001;http://*:6002" &此时候的6001和6002端口对应的程序的内存和static变量都是存在同一个堆栈里面,可以做缓存。 nohup dotnet /www/wwwroot/x 阅读全文
该文被密码保护。 阅读全文
摘要:
代码: StringBuilder stringBuilder = new StringBuilder(); stringBuilder.AppendFormat("{0} sssss{", "aaaa"); stringBuilder.AppendLine("}"); 报错: 解决办法: Stri 阅读全文
摘要:
/// <summary>/// 获取该时间所在月份的最后一天的string(年月日)/// </summary>/// <param name="time"></param>/// <returns></returns>public static string get_last_day_at_pa 阅读全文
摘要:
truncate table table_name_xxx 执行速度非常快,只会产生极少的日志log 阅读全文
摘要:
代码:prettyFormat function prettyFormat(str) { try { // 设置缩进为2个空格 str = JSON.stringify(JSON.parse(str), null, 2); str = str .replace(/&/g, '&') .replace 阅读全文