• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • C#驗證郵件的正則表達式的代碼

    發表于:2007-05-25來源:作者:點擊數: 標簽:代碼正則表達式郵件驗證
    驗證輸入的正確性 public static bool isEmail(string inputEmail) { inputEmail = NulltoString(inputEmail); string strRegex = @^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)
    驗證輸入的正確性

    public static bool isEmail(string inputEmail)
    {
    inputEmail = NulltoString(inputEmail);
    string strRegex = @"^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$";
    Regex re = new Regex(strRegex);
    if (re.IsMatch(inputEmail))
    return (true);
    else
    return (false);
    }

    驗證郵件地址的正確性:

    string[] host = (address.Split(@));
    string hostname = host[1];

    IPHostEntry IPhst = Dns.Resolve(hostname);
    IPEndPoint endPt = new IPEndPoint(IPhst.AddressList[0], 25);
    Socket s= new Socket(endPt.AddressFamily, SocketType.Stream,ProtocolType.Tcp);
    s.Connect(endPt);

    //Attempting to connect
    if(!Check_Response(s, SMTPResponse.CONNECT_SUCCESS))
    {
    s.Close();
    return false;
    }

    //HELO server
    Senddata(s, string.Format("HELO {0}\r\n", Dns.GetHostName() ));
    if(!Check_Response(s, SMTPResponse.GENERIC_SUCCESS))
    {
    s.Close();
    return false;
    }

    //Identify yourself
    //Servers may resolve your domain and check whether you are listed in BlackLists etc.
    Senddata(s, string.Format("MAIL From: {0}\r\n","testexample@deepak.portland.co.uk"));
    if(!Check_Response(s, SMTPResponse.GENERIC_SUCCESS))
    {

    s.Close();
    return false;
    }


    //Attempt Delivery (I can use VRFY, but most SMTP servers only disable it for security reasons)
    Senddata(s, address);
    if(!Check_Response(s, SMTPResponse.GENERIC_SUCCESS))
    {

    s.Close();
    return false;
    }
    return (true);

    原文轉自:http://www.kjueaiud.com

    評論列表(網友評論僅供網友表達個人看法,并不表明本站同意其觀點或證實其描述)
    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>