博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Trackback with C#
阅读量:5976 次
发布时间:2019-06-20

本文共 1214 字,大约阅读时间需要 4 分钟。

        private void Button1_Click(object sender, System.EventArgs e)
        {
            HttpWebRequest HttpWReq=(HttpWebRequest)WebRequest.Create("http://tb.donews.net/TrackBack.aspx?PostId=527773");
            HttpWReq.Method="POST";
            HttpWReq.ContentType="application/x-www-form-urlencoded";
        //    string p="title=引用到的文章标题&url=引用到的地址&excerpt=正文&blog_name=作者";
            string p="title=title1&url=http://www.gmail.com&excerpt=mainpart&blog_name=me";
            ASCIIEncoding encoding=new ASCIIEncoding();
            byte[]  byte1=encoding.GetBytes(p);
            Stream sm=HttpWReq.GetRequestStream();
            sm.Write(byte1,0,byte1.Length);
            sm.Close();
            HttpWebResponse HttpWResp = (HttpWebResponse)HttpWReq.GetResponse();
            StreamReader sr = new StreamReader(HttpWResp.GetResponseStream());
    //        StreamReader sr = new StreamReader(HttpWResp.GetResponseStream(),Encoding.GetEncoding("GB2312"));
            foreach(string i in HttpWReq.Headers)
            Response.Write(i+"="+HttpWReq.Headers[i]+"<br>");
            Response.Write(sr.ReadToEnd());
            HttpWResp.Close();
        }
效果见:http://blog.donews.com/civ3/archive/2005/08/26/527773.aspx
说实话真觉得不如在脚本中方便。
看着sm.Write(byte1,0,byte1.Length);就觉得不爽。
xmlhttp.send("title=title1&url=http://www.gmail.com&excerpt=mainpart&blog_name=me");多直接!

转载于:https://www.cnblogs.com/civ3/archive/2005/08/27/223926.html

你可能感兴趣的文章
Callbacks, Promises and Async/Await
查看>>
华为程序员:加6天班!加班费1.4万元!网友:我能加到它破产
查看>>
解读 JavaScript 之引擎、运行时和堆栈调用
查看>>
不得不懂系列(1)-Go语言protobuf快速上手
查看>>
版本控制系统git
查看>>
从月薪5k到5w的过来人 给大学生程序员们的一点建议
查看>>
Android开发之 .9PNG 的使用
查看>>
学习笔记(3.27)
查看>>
ecshop ajax无刷新登陆_无需整理
查看>>
Android中隐藏标题栏和状态栏
查看>>
浅显c#连接数据库
查看>>
15. SQL -- 游标(实例)
查看>>
plsql9.0.6.1665版本注册码
查看>>
Linux入门基础之grep命令详解及正则表达式
查看>>
Linux之Find命令详解
查看>>
crysis2 video&cryengine3 editor show
查看>>
数据挖掘 numpy之数组定义
查看>>
Hibernate学习之SessionFactory的opensession 和 getCu...
查看>>
web网站服务(二)
查看>>
【第一期】网站打开错误问题解决方法集合
查看>>