首页 > 编程 > ASP > 正文

ASPX接收WINDOWS应用程序以POST方式发来的信息并存成文件

2024-05-04 11:06:38
字体:
来源:转载
供稿:网友

商业源码热门下载www.html.org.cn

我这个笨蛋终于调出来了。。。不要问我调出了啥,都写在标题上了。。。。
赶紧写下来,然后睡觉。。。。

目前已经尝试了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小,还希望高人指导!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表