摘要:
public static class ExcelHelper { /// /// 获取单元格的值 /// /// Excel sheet表名称 /// 行索引 /// 列索引 /// 行索引和列索引从0开始 ///这个方法是用来检查如果你不知道你的单元格里... 阅读全文
摘要:
public class RestClient { public string EndPoint { get; set; } //请求的url地址 public HttpVerb Method { get; set; } //请求的方法 public string ContentType { get; set; } //... 阅读全文
摘要:
/// /// DES对称加密 /// public static class DESHelper { /// /// 根据用户名解密 /// /// /// /// public static string Decrypt(string ... 阅读全文
摘要:
一、需求描述 现在有A系统和B系统,需要在A系统进行单点登陆到B系统。 二、B系统要做事 1、提供一个可以让A系统登陆的网址 http://localhost:8083/Account/SingleSignOn/?u=xxx&token=FB92B341DBDB59D7 其中,u为加密后的用户名,t 阅读全文