摘要:
属性/方法名称 功能 示例语法AddItem() 增加一行 O.A String[, RowIndex]Aggregate 返回集合合计(总数,平均,等等) O.A = (A,Row1,Col1,Row2,Col2)Align 对象在窗体上的显示位置 O.A = 0|1|2|3|4AllowBigS 阅读全文
摘要:
1、如何在Asp.Net Core中激活Session功能 首先添加Session包,其次在ConfigService方法中添加Session,然后在ConfigService中调用useSession。 2、什么是中间件 指注入到应用中处理请求和响应的组件,是通过多个嵌套形成的 3、Applica 阅读全文
摘要:
1、 class和struct的区别? Class可以被实例化,属于引用类型 Struct属于值类型 2、 C#中类成员的访问修饰符有哪些? private : 私有成员, 在类的内部才可以访问。 protected : 保护成员,该类内部和继承类中可以访问。 public : 公共成员,完全公开, 阅读全文
摘要:
//定义变量 HttpRequest Request; HttpResponse Response; HttpServerUtility Server; HttpContext Context; protected string token = string.Empty; private strin 阅读全文
摘要:
js代码 <script type="text/javascript"> //全选/全不选 function ChangeRoleStatus(id) { var status = $("#" + id).attr("checked"); if (status == true || status = 阅读全文
摘要:
第一步新建服务(Windows服务) 第二步右键属性修改ServiceName 第三步编写代码 System.Timers.Timer task; protected override void OnStart(string[] args) { task=new System.Timers.Time 阅读全文
摘要:
没有用过多线程,所以没有过多的了解操作原理以及怎么编写多线程 后来才只知道将一个传入的集合分别拆开为N个集合来进行使用 //分线程执行 public static void OperateThread(object Sales) { //Sales 传入的数据集合 List<TradeSales> 阅读全文
摘要:
首先确定excel的版本为97~2003版本 其次创建一个帮助类——ExcelHelper //单个sheet public static DataTable AnalysisExcel(string fileName,string sheetName) { using(Stream stream= 阅读全文
摘要:
传入:Json格式的时间 JS如下: yyyy-M(MM)-d(dd) H(HH):m(mm):s(ss) yyyy-MM-dd HH:mm:ss 运用时,在js中调用 阅读全文
摘要:
引用ICSharpCode.SharpZipLib.dll 1、编写压缩和解压代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading 阅读全文