我這個笨蛋終於調出來了。 。 。不要問我調出了啥,都寫在標題上了。 。 。 。
趕緊寫下來,然後睡。 。 。 。
目前已經嘗試了ASP,JS,C++,C#,前三個都有數月甚至數年的經驗了,爭取把最後一個也搞大。 。 。 。
接下來搞啥?
切入正題。 。 。
Windows端應用程式
1,先建立兩個POST變量,這兩個POST變數模擬ASP中的Form的name~~~(我瞎試的,果然是模擬form)
System.Net.WebClient WebClientObj=new System.Net.WebClient();
System.Collections.Specialized.NameValueCollection PostVars=new System.Collections.Specialized.NameValueCollection();
PostVars.Add("c",textBox2.Text);
PostVars.Add("b",textBox3.Text);
//textBox2.Text裡面存的是要POST的資訊哈
2, 然後傳送給一個網頁:http: //www.dc9.cn/t/default.aspx
try
{
byte[] byRemoteInfo=WebClientObj.UploadValues(" http://www.dc9.cn/t/default.aspx","POST",PostVars );
//下面都沒用啦,就上面一句話就可以了
string sRemoteInfo=System.Text.Encoding.Default.GetString(byRemoteInfo);
//這是取得回傳訊息
textBox1.Text=sRemoteInfo;
axDHTMLEdit1.DocumentHTML=sRemoteInfo;
//下面用了COM元件WebBrowser,讓他顯示回傳訊息,沒什麼用,可以不看。
object url="about:blank";
object nothing=System.Reflection.Missing.Value;
this.axWebBrowser1.Navigate2(ref url,ref nothing,ref nothing,ref nothing,ref nothing);
((mshtml.IHTMLDocument2)this.axWebBrowser1.Document).write(sRemoteInfo);
}
catch
{}
WEB端應用程式
1,在Page_Load裡寫
string MyText=System.Web.HttpContext.Current.Request.Form["c"];
string MyText2=System.Web.HttpContext.Current.Request.Form["b"];
//取得兩個POST來的信息
StreamWriter sw=new StreamWriter(Server.MapPath(".")+" \1.shtml ", true, Encoding.UTF8);
sw.Write(MyText);
sw.Write(MyText2);
sw.Close();
//true的意思就是以append的方式寫入POST來的訊息
恩,就寫到這裡。
不知道用這種方法寫檔案是不是比FSO和AdodB.stream效率高佔用cpu小,還希望高人指導!