记忆盒子

把记忆装进灰色的盒子,封装起来,那年那月,重新拾起。

首页搜索目录
search
当前主题: 软件编程

asp.net(c#)中实现ping功能

作者:Kaka    时间:2009-9-7 3:41:46    浏览:    评论:1

      在asp.net(c#)下实现ping功能

      添加引用:

using System.Diagnostics;

      程序代码:

   string hostname = "http://www.baidu.com";
   
   Process prc=new Process();  
   prc.StartInfo.FileName="cmd.exe";  
   prc.StartInfo.UseShellExecute=false;  
   prc.StartInfo.RedirectStandardInput   =   true;  
   prc.StartInfo.RedirectStandardOutput   =   true;  
   prc.StartInfo.RedirectStandardError   =   true;  
   prc.StartInfo.CreateNoWindow   =   false;  
   prc.Start();  
   prc.StandardInput.WriteLine("ping " + hostname);  
   prc.StandardInput.Close();  
   Response.Write(prc.StandardOutput.ReadToEnd());

       执行结果:

Microsoft Windows 2000 [Version 5.00.2195] (C) 版权所有 1985-2000 Microsoft Corp. C:\WINNT\system32>ping http://www.baidu.com Pinging http://www.baidu.com [59.37.71.86] with 32 bytes of data: Reply from 59.37.71.86: bytes=32 time=11ms TTL=59 Reply from 59.37.71.86: bytes=32 time=11ms TTL=59 Reply from 59.37.71.86: bytes=32 time=11ms TTL=59 Reply from 59.37.71.86: bytes=32 time=12ms TTL=59 Ping statistics for 59.37.71.86: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 11ms, Maximum = 12ms, Average = 11ms C:\WINNT\system32>

 

原创文章转载请注明:文章转载自 记忆盒子 [http://www.webkaka.com/blog/]
本文地址:
http://www.webkaka.com/blog/archives/aspnet-csharp-execute-ping.html

 

x

标签: Asp.net  

※ 网站速度慢?试试网站自动优化工具 ※

上一篇: asp执行ping命令
下一篇: 外部连接对网站Alexa排名的重要性
  • 1.j*****
  • 高级的,对于.net c#完全看不懂
    Liwen 于 2009-9-7 9:23:21 回复
    博客是个资料库,把一些东西记录下来,以便需要时查找.
  • 2009/9/7 8:31:00 回复该留言

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

订阅博客                   QQ交流群(312716741)

  • 通过Google订阅本站 通过鲜果订阅本站 通过抓虾订阅本站
  • 通过QQ邮箱订阅本站 通过Yahoo订阅本站 通过有道订阅本站

Search

最新评论及回复

最近留言

网站分类

Powered By Z-Blog 1.8 Walle Build 91204 Designed by Han'space

Copyright @2009-2024 All Rights Reserved. 粤ICP备14028160号-1

Powered By Z-Blog 1.8 Walle Build 91204
Copyright @2009-2024 All Rights Reserved.