经过无数次的反复验证与修改终于诞生了这篇帖子(鼓掌)
王杰友情提示:
首先导入system.io与system.net.sockets命名空间
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Net.Sockets;
using System.IO;
namespace 再次检测服务器开放端口的信息
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Panel Panel1;
private void Page_Load(object sender, System.EventArgs e)
{
int[] arrPort=new int[5]{21,23,25,110,1433};
string strServer="localhost";
string strService,strResponse,strShow;
int intPort;
for(int i=0;i<arrPort.Length;i++)
{
intPort=arrPort[i];
switch(intPort)
{
case 21:
strService="FTP服务"; break;
case 23:
strService="Telnet服务"; break;
case 25:
strService="SMTP服务"; break;
case 110:
strService="POP3服务"; break;
default:
strService="无法知道"; break;
}
if ((strResponse=TcpConnect(strServer,intPort))!="没有开放")
{
strShow="<b>"+intPort.ToString()+"</b>端口:"+"</font>";
}
else
{
strShow="<b>"+intPort.ToString()+"</b>端口没有开放"+"(<font color=red>)"+strService+"</font>";
}
Panel1.Controls.Add(new LiteralControl(strShow+"<p>"));
}
}
public string TcpConnect(string strServer,int intPort)
{
string strResult;
TcpClient tcpc=new TcpClient();
try
{
tcpc.Connect(strServer,intPort);
Stream s=tcpc.GetStream();
StreamReader sr=new StreamReader(s);
strResult=sr.ReadLine();
}
catch(Exception ee)
{
strResult="没有开放";
}
finally
{
tcpc.Close();
}
return strResult;
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
http://zdrjwlb.bulo. QQ群:1659819