C#验证IP地址

using System.Net;

try
                {
                    IPAddress a = IPAddress.Parse(输入的IP字符串);
                }
                catch (System.Exception ex)
                {
                    MessageBox.Show("输入错误:输入的IP地址无效,请重新输入。", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }

 

posted on 2013-09-12 11:33  xxxteam  阅读(307)  评论(0编辑  收藏  举报

导航