上一页 1 ··· 4 5 6 7 8
摘要: 发送POST请求出现Http 417错误的解决方法 当我们POST数据到另一个IIS寄存的Web程式的情况下, 会出现:417 Expectation Failed 这个异常源自HTTP1.1协议的一个规范: 100(Continue) 100(Continue)状态代码的解释 允许客户端发requ 阅读全文
posted @ 2018-09-28 15:04 奉利民 阅读(2594) 评论(0) 推荐(0)
摘要: 校园小情书小程序前端+后端源码 https://www.douban.com/group/topic/116974400/ 小程序源码疯狂猜成语小程序源码UI美观 https://www.douban.com/group/topic/116974486/ 知识答题类小程序源码 https://www 阅读全文
posted @ 2018-09-21 15:19 奉利民 阅读(1446) 评论(0) 推荐(0)
摘要: Model 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Security.Cryptography; 6 using System 阅读全文
posted @ 2018-09-05 17:25 奉利民 阅读(392) 评论(0) 推荐(0)
摘要: Quick Start Done! Explore the Introduction page to get started. v1.0.0 阅读全文
posted @ 2018-09-04 16:04 奉利民 阅读(815) 评论(0) 推荐(0)
摘要: https://www.webpagetest.org/细致到每一个资源的加载都是完全可视化,包含详细的数据分析。开发完成自己的网站后一定要进行一下测试,你会发现还有很多可以优化的点。 阅读全文
posted @ 2018-09-04 15:59 奉利民 阅读(402) 评论(0) 推荐(0)
摘要: OOP: Object Oriented Programming: 面向对象编程技术的关键性观念是它将数据及对数据的操作行为放在一起,作为一个相互依存、不可分割的整体——对象。对于相同类型的对象进行分类、抽象后,得出共同的特征而形成了类 AOP(面向切面编程) 在软件业,AOP为Aspect Ori 阅读全文
posted @ 2018-08-31 15:21 奉利民 阅读(714) 评论(0) 推荐(0)
摘要: for(int i=1;i<10;i++) { for(int j=1;j<=i;j++) { Console.Write("{0}*{1}={2}",j,i,i*j) } Console.WriteLine(); } 阅读全文
posted @ 2018-08-25 11:03 奉利民 阅读(461) 评论(0) 推荐(0)
摘要: int [] array = new int [*] ; int temp = 0 ; for (int i = 0 ; i < array.Length - 1 ; i++) { for (int j = i + 1 ; j < array.Length ; j++) { if (array[j] 阅读全文
posted @ 2018-08-25 10:10 奉利民 阅读(5210) 评论(1) 推荐(0)
上一页 1 ··· 4 5 6 7 8