1 Pages, 9 Records 

最新测试可用的博客Ping Service服务器地址

by Jason 2008-05-31, 04:30
以下数据是用Tiray Blog Ping V1.1测试的! ---------------------------------------- 开始时间:2008/5/31 4:24:09结束时间:2008/5/31 4:30:50共401.804秒 共31个地址 已完成的地址:15 http://rpc.weblogs.com/RPC2 http://blogsearch.google.com/ping/RPC2 http://www.xianguo.com/xmlrpc/ping.php http://blog.iask.com/RPC2 http://pi... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:,
Category:博客技术

Tiray Blog Ping 1.1发布

by Jason 2008-05-30, 23:53
Tiray Blog Ping 1.1已于2008年5月30日发布,1.1版对以下功能进行了更新:   在实时信息里显示了服务器返回的详细信息。   更新了发送Ping命令的流程,成功率有了较大提高。   全面支持发送中文信息。 界面截图: 下载地址:http://www.tiray.net/page/Tiray-Blog-Ping.aspx 下面是用Fiddler截获的向Google发送Ping命令的数据包: POST /ping/RPC2 HTTP/1.1 Content-Type: text/xml User-Age... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:, ,
Category:.NET编程 | 博客技术

博客链接--融入博客的大家庭

by Jason 2008-05-24, 00:26
博主们通常都会在自己博客的首页放置一个博客链接(英文:blogroll),用于显示自己感兴趣的博客网站。博主通过博客链接向读者传达了这样一个信息:我和这些网站保持着紧密的联系,我可是博客大家庭的一员哦!同时,博主也通过博客链接告诉其它博主:我很喜欢你的网站,你的大作我可是在第一时间拜读的哦! 很多博客网站的博客链接仅仅是一些简单的地址链接,如下图所示: 其实博客链接可以做得更好!在 Feed--博客技术的核心 一文中,我提到Feed的意义在于提供了一种规范的信息共享方法,如果我们有了一个博客网站的Feed描述,通过一些很简单的程序代码,... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:,
Category:博客技术

"Unable to load DLL 'rasapi32.dll'"异常的解决方法

by Jason 2008-05-19, 13:21
某些ASP.NET 2.0虚拟主机空间在调用派生于System.Net.WebRequest的类(如HttpWebRequest)时,会出现"Unable to load DLL 'rasapi32.dll'"异常,使用catch捕获的异常信息为:Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section。 这个异常导致网站程序不能发送WebRequest,也就不能调用Web服务。对于博客程序来说,就无法使用Pin... [More]

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:,
Category:.NET编程 | 博客技术

Feed--博客技术的核心

by Jason 2008-05-16, 01:10
什么是Feed 每个博客网站程序都提供了一个XML文档,用于描述博客网站中的内容信息,通常把这个XML文档称为Feed。 Feed有很多种格式,目前使用比较广泛的格式有两种:RSS2.O和Atom 1.0。介绍RSS和Atom的文章很多,所以我就不再啰嗦了。如果想了解更多的RSS和Atom知识,可以参考以下内容: http://validator.w3.org/feed/docs/ 可以找到RSS2.0和Atom1.0格式的详细描述 http://zhidao.baidu.com/question/5440467.html 关于RSS和Atom的背景知识 Feed的扩展性 Fe... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:,
Category:博客技术

一个用于blogengine.net的文章访问计数器

by Jason 2008-05-08, 16:27
是以blogengine.net的Extention(扩展)方式实现的,因为我不想改变blogengine.net的数据结构和底层代码。不过个人觉得更好的办法还是在数据提供器级别实现比较好。期待BlogEngine.net以后能够实现这一功能。 使用方法: 1、下载并解压下面的文件,然后复制到/App_Code/Extentions/目录下; 2、打开你当前使用的Theme文件夹中的PostView.ascx文件,在你想要显示计数值的位置添加以下的代码: <%= PostViewCount.GetPostViewCount(Post) %> PostViewCount... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Ping Service--用C#实现发送Ping命令的Windows桌面程序

by Jason 2008-05-06, 21:00
在我的前一篇文章Ping Service--你的博客“Ping”了吗? 中,我介绍了Ping Service技术的一些情况,然后我提到我目前使用的虚拟主机不支持发送Ping命令的功能,这使我决定自己写一个发送Ping命令的桌面程序。 Ping Service的客户端请求目前有两个接口:weblogUpdates.ping 和 weblogUpdates.extendedPing,后者兼容前者。大部分的Ping Service服务器都同时支持这两个接口,但对这两个版本的ping命令通常都按相同方式处理,也就是说都按weblogUpdates.ping方式处... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:, , ,
Category:.NET编程 | 博客技术

Ping Service--你的博客“Ping”了吗?

by Jason 2008-05-04, 13:37
写好一篇博客,当然是迫不及待地想和别人分享一下。如果有一种方法,能够自动将你最新的博客摘要发送到各大博客网站,或者让Google在第一时间收录你的大作,你相信吗? 这种方法就是Ping Service。Ping Service最早由WEBBLOGS.COM提出,其目的就是为博客程序提供一种通知机制,以便在第一时间将博客的更新信息发布到提供Ping Service服务的网站。现在,Ping Service已经被各大主流博客系统所采用,并发挥着越来越重要的作用。去WEBBLOGS.COM的主页http://weblogs.com/home.html看看吧,在“Recently U... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:,
Category:博客技术

如何在Blogengine.NET的首页使用Google站内搜索

by Jason 2008-05-03, 21:32
Google Site Search为我们提供了强大的站内搜索功能,一般而言,我们实在是没有必要再费神去开发什么站内搜索引擎了,就让Google替我们完成这些耗费服务器资源的事情吧 Google站内搜索默认是使用“form ”方法提供的,下面是一段标准的Google站内搜索代码: <form method="post" target="_blank" action="http://www.google.cn/search">       <... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:, ,
Category:博客技术
   1 Pages, 9 Records 

Powered by BlogEngine.NET 1.4.5.0 Theme by Mads Kristensen
滇ICP备06001863号

我的软件

最新评论

Comment RSS

声明

      如非特别注明,本网站发布的所有文章、源代码及软件均为原创,其版权归www.tiray.net所有。如需转载或引用,请注明出处并通知作者。
      本网站建立于中华人民共和国境内,受中华人民共和国法律法规约束。请勿在本网站发表违反国家法律法规的言论。