03 2020 档案
摘要:var obj = Request.Form; StringBuilder sb = new StringBuilder(); PropertyInfo[] properties = obj.GetType().GetProperties(); foreach (PropertyInfo p in
阅读全文
摘要://声明接受int的方法并返回空的委托。 public delegate void invokeDelegate(); //调用委托, // invokeDelegate FF = new invokeDelegate(StartMethod); private void button1_Click
阅读全文
摘要: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
阅读全文
摘要:<!DOCTYPE html> <html> <head> <style> /*字体*/ @font-face { font-family: 'Chinese Quote'; src: local('PingFang SC'), local('SimSun'); unicode-range: U+2
阅读全文
摘要:C#服务器接受 string url = request["url"]; publicasync Task<AjaxResult<List<T_Sys_Suggestion>>> GetDataListByTime(Pagination pagination, string condition, s
阅读全文
摘要:https://www.cnblogs.com/fancunwei/p/9567497.html
阅读全文
摘要:转自: https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export 主 HTML <!DOCTYPE html> <html> <head> <script type="module" src
阅读全文
摘要:intel 1211网卡驱动来源https://www.changwang.com/down/showdownload.php?id=16
阅读全文
摘要:private void AlarmDemo_FormClosing(object sender, FormClosingEventArgs e) { ////MessageBox.Show("你按下了ESC"); DialogResult dr = MessageBox.Show("确定要退出吗?
阅读全文
摘要:阮一峰 http://www.ruanyifeng.com/blog/2008/06/base64.html imweb : https://imweb.io/topic/5b8ea5327cd95ea86319358a
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>files-h5</title> </head> <body> <input type="file" id="file" onchange="showPreview(this, '
阅读全文
摘要:byte[] bUserInfoSearch = new byte[1024 * 10]; //10kb大小 Marshal.Copy(lpBuffer, bUserInfoSearch, 0, bUserInfoSearch.Length); string strUserInfoSearch =
阅读全文
摘要: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
阅读全文
摘要://托管内存中的数据 复制到非托管内存中 IntPtr ptrURL = Marshal.StringToHGlobalAnsi("123465"); //释放在非托管中分配的内存 Marshal.FreeHGlobal(ptrURL); NET_DVR_StartRemoteConfig(0,0,
阅读全文
摘要://定义一个委托 public delegate void RemoteConfigCallback(uint dwType, IntPtr lpBuffer, uint dwBufLen, IntPtr pUserData); //定义一个函数 private void ProcessUserIn
阅读全文
摘要: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
阅读全文
摘要:/* 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
阅读全文
摘要:<script> var obj ;(function() { var i = 0 var int = self.setInterval(function() { console.log(i++) obj = document.getElementById('AAA') if (obj) { win
阅读全文
摘要:function test() { //输出html function out_innerHTML(objs) { for (var i = 0; i < objs.length; i++) { //console.log(t[i]); //console.log(t[i].getElementsB
阅读全文
摘要:<!DOCTYPE html> <html> <head> <style> #lay-table { background-color: #fff; color: #666; border-collapse: collapse; border-spacing: 0; width: 100%; } #
阅读全文
摘要://入口1 ################################################ /* 调用 layui.config({ version: "2.0.8", base: '/larryms/', //实际使用时,建议改成绝对路径 //mods:'index', righ
阅读全文
摘要:转自 ; https://blog.csdn.net/qq_19644471/article/details/81949680
阅读全文
摘要:百度地图JavaScript API http://lbsyun.baidu.com/index.php?title=jspopular JavaScript API v2.0类参考 http://lbsyun.baidu.com/cms/jsapi/reference/jsapi_referenc
阅读全文