03 2020 档案

摘要:var obj = Request.Form; StringBuilder sb = new StringBuilder(); PropertyInfo[] properties = obj.GetType().GetProperties(); foreach (PropertyInfo p in 阅读全文
posted @ 2020-03-28 17:54 enych 阅读(311) 评论(0) 推荐(0) 编辑
摘要://声明接受int的方法并返回空的委托。 public delegate void invokeDelegate(); //调用委托, // invokeDelegate FF = new invokeDelegate(StartMethod); private void button1_Click 阅读全文
posted @ 2020-03-27 17:44 enych 阅读(292) 评论(0) 推荐(0) 编辑
摘要:win8 6.2 9200 win8.1 6.3 9600 win2012r 6.3 9600 --分区 win2012r 分为4个区 1.300MB(恢复) 2.100MB(系统分区) 3.128MB(MSR保留) 4.59.5G win8.1 分为4个分区 和win2012r一样 win10 1 阅读全文
posted @ 2020-03-26 11:57 enych 阅读(421) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head> <style> /*字体*/ @font-face { font-family: 'Chinese Quote'; src: local('PingFang SC'), local('SimSun'); unicode-range: U+2 阅读全文
posted @ 2020-03-24 17:51 enych 阅读(379) 评论(0) 推荐(0) 编辑
摘要:C#服务器接受 string url = request["url"]; publicasync Task<AjaxResult<List<T_Sys_Suggestion>>> GetDataListByTime(Pagination pagination, string condition, s 阅读全文
posted @ 2020-03-23 15:42 enych 阅读(344) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/fancunwei/p/9567497.html 阅读全文
posted @ 2020-03-23 15:28 enych 阅读(184) 评论(0) 推荐(0) 编辑
摘要:转自: https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export 主 HTML <!DOCTYPE html> <html> <head> <script type="module" src 阅读全文
posted @ 2020-03-20 14:10 enych 阅读(305) 评论(0) 推荐(0) 编辑
摘要:intel 1211网卡驱动来源https://www.changwang.com/down/showdownload.php?id=16 阅读全文
posted @ 2020-03-20 08:38 enych 阅读(2660) 评论(0) 推荐(0) 编辑
摘要:private void AlarmDemo_FormClosing(object sender, FormClosingEventArgs e) { ////MessageBox.Show("你按下了ESC"); DialogResult dr = MessageBox.Show("确定要退出吗? 阅读全文
posted @ 2020-03-17 09:09 enych 阅读(815) 评论(0) 推荐(0) 编辑
摘要:阮一峰 http://www.ruanyifeng.com/blog/2008/06/base64.html imweb : https://imweb.io/topic/5b8ea5327cd95ea86319358a 阅读全文
posted @ 2020-03-16 09:15 enych 阅读(266) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>files-h5</title> </head> <body> <input type="file" id="file" onchange="showPreview(this, ' 阅读全文
posted @ 2020-03-16 08:58 enych 阅读(698) 评论(0) 推荐(0) 编辑
摘要:byte[] bUserInfoSearch = new byte[1024 * 10]; //10kb大小 Marshal.Copy(lpBuffer, bUserInfoSearch, 0, bUserInfoSearch.Length); string strUserInfoSearch = 阅读全文
posted @ 2020-03-13 11:37 enych 阅读(1341) 评论(0) 推荐(0) 编辑
摘要:1、使用端口过滤: tcp.port >=52330 and tcp.port<=52331 使用端口+ip过滤 tcp.port >=8000 and tcp.port<=8000 and ip.src==192.168.1.76 tcp.port >=8000 and tcp.port<=800 阅读全文
posted @ 2020-03-10 15:05 enych 阅读(216) 评论(0) 推荐(0) 编辑
摘要://托管内存中的数据 复制到非托管内存中 IntPtr ptrURL = Marshal.StringToHGlobalAnsi("123465"); //释放在非托管中分配的内存 Marshal.FreeHGlobal(ptrURL); NET_DVR_StartRemoteConfig(0,0, 阅读全文
posted @ 2020-03-10 14:11 enych 阅读(814) 评论(0) 推荐(0) 编辑
摘要://定义一个委托 public delegate void RemoteConfigCallback(uint dwType, IntPtr lpBuffer, uint dwBufLen, IntPtr pUserData); //定义一个函数 private void ProcessUserIn 阅读全文
posted @ 2020-03-10 11:56 enych 阅读(402) 评论(0) 推荐(0) 编辑
摘要:public class test { //属性 public unicode_gb[] m_unicode_gb = new unicode_gb[10]; public A[] m_A = new A[10]; public class A { public int unicode; publi 阅读全文
posted @ 2020-03-09 17:24 enych 阅读(1386) 评论(0) 推荐(0) 编辑
摘要:/* int z11 =sizeof(int); //4 int z12 = sizeof(char); //1 int z13 = sizeof(unsigned char); //1 int z14 = sizeof(unsigned short int); //2 int z15 = size 阅读全文
posted @ 2020-03-09 17:02 enych 阅读(262) 评论(0) 推荐(0) 编辑
摘要:<script> var obj ;(function() { var i = 0 var int = self.setInterval(function() { console.log(i++) obj = document.getElementById('AAA') if (obj) { win 阅读全文
posted @ 2020-03-06 11:27 enych 阅读(933) 评论(0) 推荐(0) 编辑
摘要:function test() { //输出html function out_innerHTML(objs) { for (var i = 0; i < objs.length; i++) { //console.log(t[i]); //console.log(t[i].getElementsB 阅读全文
posted @ 2020-03-04 21:48 enych 阅读(165) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head> <style> #lay-table { background-color: #fff; color: #666; border-collapse: collapse; border-spacing: 0; width: 100%; } # 阅读全文
posted @ 2020-03-04 17:02 enych 阅读(656) 评论(0) 推荐(0) 编辑
摘要://入口1 ################################################ /* 调用 layui.config({ version: "2.0.8", base: '/larryms/', //实际使用时,建议改成绝对路径 //mods:'index', righ 阅读全文
posted @ 2020-03-03 17:49 enych 阅读(993) 评论(0) 推荐(0) 编辑
摘要:转自 ; https://blog.csdn.net/qq_19644471/article/details/81949680 阅读全文
posted @ 2020-03-03 16:31 enych 阅读(423) 评论(0) 推荐(0) 编辑
摘要:百度地图JavaScript API http://lbsyun.baidu.com/index.php?title=jspopular JavaScript API v2.0类参考 http://lbsyun.baidu.com/cms/jsapi/reference/jsapi_referenc 阅读全文
posted @ 2020-03-02 09:35 enych 阅读(201) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示