ASPX接收WINDOWS应用程序发来的信息

2010-08-28 10:50:18来源:西部e网作者:

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小,还希望高人指导!
关键词:asp.net