摘要:
public class SocketHost{private IDictionary<Socket, byte[]> socketClientSesson = new Dictionary<Socket, byte[]>();public int Port { get; set; }public void Start(){var socketThread = new Thread(() =>{Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType 阅读全文
摘要:
/////////////////////让火狐和chorme浏览器支持uploadify上传///////////////////////// //jquery uploadify在ie下可以正常上传,在实现异步上传的时候,每一个文件在上传时都会提交给服务器一个请求。每个请求都需要安全验证,session和cookie的校验。是的,就是这样。由于jquery uploadify是借助flash来实现上传的,每一次向后台发送数据流请求时,ie会自动把本地cookie存储捆绑在一起发送给服务器。但firefox、chrome不会这样做,他们会认为这样不安全 ... 阅读全文
摘要:
web.confing中加入 <authentication mode="Forms"><forms loginUrl="~/Home/index" timeout="2880"/></authentication>通过验过验证C# codeif (new account.Data.Bll().Login(username, possWord))//验证身份 { FormsAuthentication.SetAuthCookie(username, false);//验证通过return Redir 阅读全文