摘要:
public class GeneralClass { public string GetName(string name) { Console.WriteLine($"{name}"); return $"{name}"; } } public class GenericMthod { publi 阅读全文
摘要:
Client: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.Mvc; namespace SiteA. 阅读全文
摘要:
阅读全文
摘要:
基本概念:IC、ASIC、SoC、MPU、MCU、CPU、GPU、DSP、FPGA、CPLD 参考:https://www.cnblogs.com/grooovvve/p/11604016.html 缓存的原因: 1、 读写速度不一致,所谓的高并发,其实都是速度不一致。 易失的都是缓存,断电 2、C 阅读全文
摘要:
http://lowcode.magicalcoder.com/magicaldrag/index-layui.html 阅读全文
摘要:
1 Session 特点: (1)Session中的数据保存在服务器端; (2)Session中可以保存任意类型的数据; (2)Session默认的生命周期是20分钟,可以手动设置更长或更短的时间 web.config 配置: 程序webconfig配置: <system.web><sessionS 阅读全文
摘要:
先简单说一下 Request 和Response 对象: Request:用户在client使用Web浏览器向Web应用程序发出请求时,会将client信息发给server。server收到一个HTTP请求,包括了全部查询字符串參数或表单參数、Cookie数据以及浏览器信息。 Request对象主要 阅读全文
摘要:
1 SoapHeader 验证 服务端: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using System.Web. 阅读全文
摘要:
1 WebService 代理类生成有两种方式,第一种是通过命令行生成,如下: 如下,生成了代理类: 但是以上方式比较麻烦,如果webservice有更新每次都要使用 wsdl.exe 工具 来生成。所以通过以下方式添加: 2 直接添加服务引用: 阅读全文
摘要:
WebService 是基于soap与http协议以xml数据格式进行通信 、 soap 协议 soap 协议的全称是简单对象访问协议(simple object access protocol),soap 协议已XML的形式进行数据传输,soap协议时可以跨平台使用,只要规范对象的访问方式,但so 阅读全文