摘要:今天有空就把操作cookie的写了,虽然很简单,不过免得到时候忘记了。 下面是写cookieHttpCookie cookie = new HttpCookie("Info");//定义cookie对象以及名为Info的项DateTime dt = DateTime.Now;//定义时间对象TimeSpan ts=new TimeSpan(1,0,0,0);//cookie有效作用时间,具体查ms...
阅读全文
摘要:RunCmd("net view")private string RunCmd(string command) { //實例一個Process類,啟動一個獨立進程 Process p = new Process(); //Process類有一個StartInfo屬性,這個是ProcessStartInfo類,包括了一些屬性和方法,下面我們用到了他的幾個屬性: p.StartInfo.FileNam...
阅读全文
摘要://Send MessageQueue MQueue = new MessageQueue(".\\private$\\MQDemo"); System.Messaging.Message Msg = new System.Messaging.Message(); Msg.Body = textBox1.Text; Msg.Formatter = new System.Messaging.XmlM...
阅读全文
摘要://引入com microsoft.xml.3.0 //using MSXML2; public void GetCon(String Url) { // string vs = ""; // try // { // ArrayList arr = new ArrayList(); // XMLHTTP XmlHttp = new MSXML2.XMLHTTPClass(); ; // XmlHt...
阅读全文
摘要:根據xml文檔數據 給DataTable增加行private DataTable DTXml(string node,string path)/////////////node節點,path xml文檔路徑{ XmlDocument XmlDoc = new XmlDocument(); XmlDoc.Load(path); XmlNode XmlRoot = XmlDoc.SelectSingl...
阅读全文
摘要://注意引入 using System.Drawing.Imaging;public bool ThumbnailCallback(){return false;}////oldfile原图地址, newfile新图地址private void ShowThumbnail(string oldfile,string newfile){ System.Drawing.Image image =Sys...
阅读全文