摘要:
//ServiceStack对浏览器有一定的限制//修改AppHost.cs文件using Funq;using ServiceStack;using ServiceStackTest.ServiceInterface;namespace ServiceStackTest{ public cl... 阅读全文
摘要:
/// ///CookiesHelper 的摘要说明 /// public class CookiesHelper { public CookiesHelper() { // //TODO: 在此处添... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using... 阅读全文
摘要:
using System;using System.Diagnostics;using System.IO;using System.Reflection;using System.Runtime.InteropServices;using System.Security.Cryptography; 阅读全文
摘要:
1、当前提交页面,添加代码打开当前.aspx页面,页头加上代码:ValidateRequest="false",如:2、全局修改web.config配置文件(此举不建议、不安全)打开web.config文件,在中间,加上如下代码:如果以上两种方法都无法解决,3、打开web.config配置文件,在中... 阅读全文
摘要:
//TransmitFile实现下载 protected void Button1_Click1(object sender, EventArgs e) { /* 微软为Response对象提供了一个新的方法T... 阅读全文
摘要:
哈希函数将任意长度的二进制字符串映射为固定长度的小型二进制字符串。加密哈希函数有这样一个属性:在计算不大可能找到散列为相同的值的两个不同的输入;也就是说,两组数据的哈希值仅在对应的数据也匹配时才会匹配。数据的少量更改会在哈希值中产生不可预知的大量更改。MD5 算法的哈希值大小为 128 位。MD5 ... 阅读全文
摘要:
/// /// 判断是否是移动设备登录 /// /// public static bool IsMobileDevice() { string[] mobileAgents = { "iphone",... 阅读全文
摘要:
function IsPC() { var userAgentInfo = navigator.userAgent; var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows P... 阅读全文