2010年9月5日
摘要: using System;using System.Collections.Generic;using System.Text;using System.Net;namespace net.frejos.http{ public class CookieManager { private Dictionary cookieValues; public Dic... 阅读全文
posted @ 2010-09-05 04:33 米高佐敦 阅读(360) 评论(1) 推荐(0) 编辑
摘要: 模拟登录就用httpwebrequestHttpCookie UserCookie = new HttpCookie("")UserCookie.Value = "";UserCookie.Expires = DataTime.Now.AddMonth(1);HttpContext.Response.Cookies.Add (UserCookie); 阅读全文
posted @ 2010-09-05 04:32 米高佐敦 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 最近在实施MSN Direct项目时,需要用VPN+ADSL方案把放在西格玛的服务器和电视塔上的发射设备连接在一起,为了测试网络是否正常,需要两边的人进行配合,通 过Ping命令判断网络是否联通。由于电视塔仅周二下午才允许调试,调试时间有限,并且人手也有限,为了节省时间,所以萌生了做一个Windows Mobile Ping 命令的想法,这样通过手机就可以直接测试网络是否联通。 Window... 阅读全文
posted @ 2010-09-05 04:17 米高佐敦 阅读(315) 评论(0) 推荐(0) 编辑