2016年1月4日
摘要: //ServiceStack对浏览器有一定的限制//修改AppHost.cs文件using Funq;using ServiceStack;using ServiceStackTest.ServiceInterface;namespace ServiceStackTest{ public cl... 阅读全文
posted @ 2016-01-04 18:47 邢帅杰 阅读(589) 评论(0) 推荐(0) 编辑
  2015年12月28日
摘要: /// ///CookiesHelper 的摘要说明 /// public class CookiesHelper { public CookiesHelper() { // //TODO: 在此处添... 阅读全文
posted @ 2015-12-28 17:09 邢帅杰 阅读(254) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using... 阅读全文
posted @ 2015-12-28 17:01 邢帅杰 阅读(184) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Diagnostics;using System.IO;using System.Reflection;using System.Runtime.InteropServices;using System.Security.Cryptography; 阅读全文
posted @ 2015-12-28 16:29 邢帅杰 阅读(668) 评论(0) 推荐(0) 编辑
  2015年12月10日
摘要: 1、当前提交页面,添加代码打开当前.aspx页面,页头加上代码:ValidateRequest="false",如:2、全局修改web.config配置文件(此举不建议、不安全)打开web.config文件,在中间,加上如下代码:如果以上两种方法都无法解决,3、打开web.config配置文件,在中... 阅读全文
posted @ 2015-12-10 14:50 邢帅杰 阅读(238) 评论(0) 推荐(0) 编辑
  2015年12月8日
摘要: //TransmitFile实现下载 protected void Button1_Click1(object sender, EventArgs e) { /* 微软为Response对象提供了一个新的方法T... 阅读全文
posted @ 2015-12-08 11:40 邢帅杰 阅读(185) 评论(0) 推荐(0) 编辑
  2015年12月4日
摘要: 哈希函数将任意长度的二进制字符串映射为固定长度的小型二进制字符串。加密哈希函数有这样一个属性:在计算不大可能找到散列为相同的值的两个不同的输入;也就是说,两组数据的哈希值仅在对应的数据也匹配时才会匹配。数据的少量更改会在哈希值中产生不可预知的大量更改。MD5 算法的哈希值大小为 128 位。MD5 ... 阅读全文
posted @ 2015-12-04 14:15 邢帅杰 阅读(644) 评论(0) 推荐(0) 编辑
  2015年12月2日
摘要: /// /// 判断是否是移动设备登录 /// /// public static bool IsMobileDevice() { string[] mobileAgents = { "iphone",... 阅读全文
posted @ 2015-12-02 20:02 邢帅杰 阅读(267) 评论(0) 推荐(0) 编辑
  2015年12月1日
摘要: function IsPC() { var userAgentInfo = navigator.userAgent; var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows P... 阅读全文
posted @ 2015-12-01 15:13 邢帅杰 阅读(185) 评论(0) 推荐(0) 编辑
  2015年11月26日
摘要: Mysql:select * from [tablename] order by rand() limit 10Sql Server:select top 5 * from [tablename] order by NEWID()Access:select top 5 * from [tablena... 阅读全文
posted @ 2015-11-26 11:58 邢帅杰 阅读(236) 评论(0) 推荐(0) 编辑