搜尋
首頁web前端html教學写个页面检查阿里云的账号是否存在_html/css_WEB-ITnose

写个页面检查阿里云的账号存在与否

 

之前无聊写了个阿里云账号注册的页面,主要是检查账号是否存在,现在分享下:

主要通过webrequest实现:

1. 写个阿里云邮箱类:

using System;using System.Collections.Generic;using System.Web;/// <summary>/// Summary description for AliEmal/// </summary>public class AliEmail{    public ContentClass content;    public bool hasError;}public class ContentClass{    public string message;    public int status;    public bool success;}


 

2. 写个邮箱验证类:

using System;using System.Collections.Generic;using System.Net;using System.Net.Mail;using System.Text;using System.Text.RegularExpressions;using System.Web;/// <summary>/// Summary description for Util/// </summary>public class AliUtil{    public AliUtil()    { }    //    // TODO: Add constructor logic here    //    #region 验证邮箱验证邮箱    /**/    /// <summary>    /// 验证邮箱    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsEmail(string source)    {        return Regex.IsMatch(source, @"^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$", RegexOptions.IgnoreCase);    }    public static bool HasEmail(string source)    {        return Regex.IsMatch(source, @"[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,})", RegexOptions.IgnoreCase);    }    #endregion    #region 验证网址    /**/    /// <summary>    /// 验证网址    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsUrl(string source)    {        return Regex.IsMatch(source, @"^(((file|gopher|news|nntp|telnet|http|ftp|https|ftps|sftp)://)|(www\.))+(([a-zA-Z0-9\._-]+\.[a-zA-Z]{2,6})|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(/[a-zA-Z0-9\&%_\./-~-]*)?$", RegexOptions.IgnoreCase);    }    public static bool HasUrl(string source)    {        return Regex.IsMatch(source, @"(((file|gopher|news|nntp|telnet|http|ftp|https|ftps|sftp)://)|(www\.))+(([a-zA-Z0-9\._-]+\.[a-zA-Z]{2,6})|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(/[a-zA-Z0-9\&%_\./-~-]*)?", RegexOptions.IgnoreCase);    }    #endregion    #region 验证日期    /**/    /// <summary>    /// 验证日期    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsDateTime(string source)    {        try        {            DateTime time = Convert.ToDateTime(source);            return true;        }        catch        {            return false;        }    }    #endregion    #region 验证手机号    /**/    /// <summary>    /// 验证手机号    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsMobile(string source)    {        return Regex.IsMatch(source, @"^1[35]\d{9}$", RegexOptions.IgnoreCase);    }    public static bool HasMobile(string source)    {        return Regex.IsMatch(source, @"1[35]\d{9}", RegexOptions.IgnoreCase);    }    #endregion    #region 验证IP    /**/    /// <summary>    /// 验证IP    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsIP(string source)    {        return Regex.IsMatch(source, @"^(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])$", RegexOptions.IgnoreCase);    }    public static bool HasIP(string source)    {        return Regex.IsMatch(source, @"(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])", RegexOptions.IgnoreCase);    }    #endregion    #region 验证身份证是否有效    /**/    /// <summary>    /// 验证身份证是否有效    /// </summary>    /// <param name="Id"></param>    /// <returns></returns>    public static bool IsIDCard(string Id)    {        if (Id.Length == 18)        {            bool check = IsIDCard18(Id);            return check;        }        else if (Id.Length == 15)        {            bool check = IsIDCard15(Id);            return check;        }        else        {            return false;        }    }    public static bool IsIDCard18(string Id)    {        long n = 0;        if (long.TryParse(Id.Remove(17), out n) == false || n < Math.Pow(10, 16) || long.TryParse(Id.Replace('x', '0').Replace('X', '0'), out n) == false)        {            return false;//数字验证        }        string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";        if (address.IndexOf(Id.Remove(2)) == -1)        {            return false;//省份验证        }        string birth = Id.Substring(6, 8).Insert(6, "-").Insert(4, "-");        DateTime time = new DateTime();        if (DateTime.TryParse(birth, out time) == false)        {            return false;//生日验证        }        string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(',');        string[] Wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(',');        char[] Ai = Id.Remove(17).ToCharArray();        int sum = 0;        for (int i = 0; i < 17; i++)        {            sum += int.Parse(Wi[i]) * int.Parse(Ai[i].ToString());        }        int y = -1;        Math.DivRem(sum, 11, out y);        if (arrVarifyCode[y] != Id.Substring(17, 1).ToLower())        {            return false;//校验码验证        }        return true;//符合GB11643-1999标准    }    public static bool IsIDCard15(string Id)    {        long n = 0;        if (long.TryParse(Id, out n) == false || n < Math.Pow(10, 14))        {            return false;//数字验证        }        string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";        if (address.IndexOf(Id.Remove(2)) == -1)        {            return false;//省份验证        }        string birth = Id.Substring(6, 6).Insert(4, "-").Insert(2, "-");        DateTime time = new DateTime();        if (DateTime.TryParse(birth, out time) == false)        {            return false;//生日验证        }        return true;//符合15位身份证标准    }    #endregion    #region 是不是Int型的    /**/    /// <summary>    /// 是不是Int型的    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsInt(string source)    {        Regex regex = new Regex(@"^(-){0,1}\d+$");        if (regex.Match(source).Success)        {            if ((long.Parse(source) > 0x7fffffffL) || (long.Parse(source) < -2147483648L))            {                return false;            }            return true;        }        return false;    }    #endregion    #region 看字符串的长度是不是在限定数之间 一个中文为两个字符    /**/    /// <summary>    /// 看字符串的长度是不是在限定数之间 一个中文为两个字符    /// </summary>    /// <param name="source">字符串</param>    /// <param name="begin">大于等于</param>    /// <param name="end">小于等于</param>    /// <returns></returns>    public static bool IsLengthStr(string source, int begin, int end)    {        int length = Regex.Replace(source, @"[^\x00-\xff]", "OK").Length;        if ((length <= begin) && (length >= end))        {            return false;        }        return true;    }    #endregion    #region 是不是中国电话,格式010-85849685    /**/    /// <summary>    /// 是不是中国电话,格式010-85849685    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsTel(string source)    {        return Regex.IsMatch(source, @"^\d{3,4}-?\d{6,8}$", RegexOptions.IgnoreCase);    }    #endregion    #region 邮政编码 6个数字    /**/    /// <summary>    /// 邮政编码 6个数字    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsPostCode(string source)    {        return Regex.IsMatch(source, @"^\d{6}$", RegexOptions.IgnoreCase);    }    #endregion    #region 中文    /**/    /// <summary>    /// 中文    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsChinese(string source)    {        return Regex.IsMatch(source, @"^[\u4e00-\u9fa5]+$", RegexOptions.IgnoreCase);    }    public static bool hasChinese(string source)    {        return Regex.IsMatch(source, @"[\u4e00-\u9fa5]+", RegexOptions.IgnoreCase);    }    #endregion    #region 验证是不是正常字符 字母,数字,下划线的组合    /**/    /// <summary>    /// 验证是不是正常字符 字母,数字,下划线的组合    /// </summary>    /// <param name="source"></param>    /// <returns></returns>    public static bool IsNormalChar(string source)    {        return Regex.IsMatch(source, @"[\w\d_]+", RegexOptions.IgnoreCase);    }    #endregion}


 

3. 写个简单的前台验证页面:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AliCheck.aspx.cs" Inherits="AliCheck" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <form id="form1" runat="server">    <div>        <div>            阿里云邮箱:            <asp:TextBox ID="AliEmailName" runat="server"></asp:TextBox>            <asp:Button ID="Check" runat="server" Text="检查是否存在" OnClick="Check_Click" />            <div style="color:red;" id="showError" runat="server"></div>         </div>    </div>    </form></body></html>


 

4.写个验证页面后台:

using System;using System.Collections.Generic;using System.IO;using System.Net;using System.Text;using System.Threading;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;public partial class AliCheck : System.Web.UI.Page{    public T Deserializer<T>(string jsonString)    {        T item = default(T);        item = Newtonsoft.Json.JsonConvert.DeserializeObject<T>(jsonString);        return item;    }    protected void Page_Load(object sender, EventArgs e)    {            }    public string CheckTest(string email)    {        string responseBody = string.Empty;        string serverUri = string.Format("https://passport.alipay.com/register/emailRpc/checkEmail.json");        string requestBody = string.Format("email={0}&fromSite=6&_csrf_token=TB2pedPPWRa0ly94qNozE5", email.Replace("@","%40"));        ////set limit for supporting 200 connection        ServicePointManager.DefaultConnectionLimit = 200;        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(serverUri);        ////extend timeout for decrease request timeout re-trying times        request.Timeout = 60 * 1000;        request.Method = @"PUT";        request.ContentType = "application/x-www-form-urlencoded; charset=UTF-8";        UTF8Encoding encoding = new UTF8Encoding();        byte[] data = encoding.GetBytes(requestBody);        request.ContentLength = data.Length;        request.KeepAlive = true;        request.Accept = "application/json, text/javascript, */*; q=0.01";        request.Headers.Set("Cache-Control", @"no-cache");        request.Referer = "https://passport.alipay.com/register/register.htm?fromSite=6&para;ms=%7B%22site%22%3A%226%22%2C%22ru%22%3A%22http%3A%2F%2Fbuy.aliyun.com%2F%22%7D";        request.UserAgent = "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)";        request.Headers.Set("Cookie", @"_umdata=5A25312D486F1DD6724ACD835355F6D7578488DB731A9A20CC7F64E6E8EE8F56B5D2A44298446384A482322D8118098ECAEDCEACF887A1CD93603238261471E839CB6075F6DCEA1B; cna=hOp6DPkMlF4CAafc6OGg639S; ALIPAYJSESSIONID=RZ02mGHIM9XnmVgsHI8rD5gmaLXOfkauthRZ02; ctoken=1bt0CRyVd15nSnCX0RHEAI2T7PsExY; umt=HB7279bc2f80e20b02ad3c6a4f6d573692; ac-stat=no; JSESSIONID=PO966Z91-R05SQP6XK00KCQCZTNYY1-AXMUZ1ZH-RVPO1; _ufaon_=6; ALI_USER_REGISTER_TOKEN=b37b07d33b6de91b787781a6d32c844c; tmp0=eNrz4A12DQ729PeL9%2FV3cfUxiK7OTLFSCvC3NDOLsjTUDTIwDQ4MMIvwNjDwdg50jgrxi4w01HWM8A2NMozy0A0KC%2FA3VNJJLrEyNDGwMLG0sDA1NjW00ElMRhPIrbAyqI0CAGg3HQg%3D");        bool isSent = false;        int retryCount = 0;        string errorStr = string.Empty;        while (!isSent && retryCount <= 100)        {            retryCount++;            try            {                using (Stream newStream = request.GetRequestStream())                {                    newStream.Write(data, 0, data.Length);                }                isSent = true;            }            catch (Exception exc)            {                if (!errorStr.Contains(exc.ToString()))                {                    errorStr += exc.ToString();                }                ////Re-try when operation timeout                if (!exc.ToString().Contains("The operation has timed out"))                {                    LogError(exc.ToString());                }                Thread.Sleep(1000);            }        }        if (retryCount > 100)        {            string err = string.Format("request.GetRequestStream try 100 times and timeout! detail error: {0}", errorStr);            LogError(err);            return err;        }        HttpWebResponse response = (HttpWebResponse)request.GetResponse();        using (StreamReader stream = new StreamReader(response.GetResponseStream(), Encoding.UTF8))        {            responseBody = stream.ReadToEnd();        }        ////need to close or abort request for each call to fix timeout issue, otherwise it will fail when the 3rd call!        if (request != null)        {            request.Abort();        }        if (response.StatusCode != HttpStatusCode.OK)        {             string err=string.Format("Failed, error:{1}", response.ToString());            LogError(err);            return err;        }        if (response != null)        {            response.Close();        }        return responseBody;    }    public void LogError(string content)    {        File.AppendAllText("log.log","ERROR: "+content + Environment.NewLine);    }    protected void Check_Click(object sender, EventArgs e)    {        if (!AliUtil.IsEmail(AliEmailName.Text.Trim()))        {            showError.InnerHtml = "邮箱不合法!";            return;        }        AliEmail email = Deserializer<AliEmail>(CheckTest(AliEmailName.Text.Trim()));        if (email.hasError == false && email.content.success == true)        {            showError.InnerHtml = "恭喜您!可以注册!";        }        else        {             showError.InnerHtml=email.content.message;        }        //showError.InnerHtml = CheckTest(AliEmailName.Text.Trim());    }}


 

演示地址:http://qq.ihaonet.com/alicheck.aspx, 有兴趣的可以自己试下。

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
HTML,CSS和JavaScript的未來:網絡開發趨勢HTML,CSS和JavaScript的未來:網絡開發趨勢Apr 19, 2025 am 12:02 AM

HTML的未來趨勢是語義化和Web組件,CSS的未來趨勢是CSS-in-JS和CSSHoudini,JavaScript的未來趨勢是WebAssembly和Serverless。 1.HTML的語義化提高可訪問性和SEO效果,Web組件提升開發效率但需注意瀏覽器兼容性。 2.CSS-in-JS增強樣式管理靈活性但可能增大文件體積,CSSHoudini允許直接操作CSS渲染。 3.WebAssembly優化瀏覽器應用性能但學習曲線陡,Serverless簡化開發但需優化冷啟動問題。

HTML:結構,CSS:樣式,JavaScript:行為HTML:結構,CSS:樣式,JavaScript:行為Apr 18, 2025 am 12:09 AM

HTML、CSS和JavaScript在Web開發中的作用分別是:1.HTML定義網頁結構,2.CSS控製網頁樣式,3.JavaScript添加動態行為。它們共同構建了現代網站的框架、美觀和交互性。

HTML的未來:網絡設計的發展和趨勢HTML的未來:網絡設計的發展和趨勢Apr 17, 2025 am 12:12 AM

HTML的未來充滿了無限可能。 1)新功能和標準將包括更多的語義化標籤和WebComponents的普及。 2)網頁設計趨勢將繼續向響應式和無障礙設計發展。 3)性能優化將通過響應式圖片加載和延遲加載技術提升用戶體驗。

HTML與CSS vs. JavaScript:比較概述HTML與CSS vs. JavaScript:比較概述Apr 16, 2025 am 12:04 AM

HTML、CSS和JavaScript在網頁開發中的角色分別是:HTML負責內容結構,CSS負責樣式,JavaScript負責動態行為。 1.HTML通過標籤定義網頁結構和內容,確保語義化。 2.CSS通過選擇器和屬性控製網頁樣式,使其美觀易讀。 3.JavaScript通過腳本控製網頁行為,實現動態和交互功能。

HTML:是編程語言還是其他?HTML:是編程語言還是其他?Apr 15, 2025 am 12:13 AM

HTMLISNOTAPROGRAMMENGUAGE; ITISAMARKUMARKUPLAGUAGE.1)htmlStructures andFormatSwebContentusingtags.2)itworkswithcsssforstylingandjavascript for Interactivity,增強WebevebDevelopment。

HTML:建立網頁的結構HTML:建立網頁的結構Apr 14, 2025 am 12:14 AM

HTML是構建網頁結構的基石。 1.HTML定義內容結構和語義,使用、、等標籤。 2.提供語義化標記,如、、等,提升SEO效果。 3.通過標籤實現用戶交互,需注意表單驗證。 4.使用、等高級元素結合JavaScript實現動態效果。 5.常見錯誤包括標籤未閉合和屬性值未加引號,需使用驗證工具。 6.優化策略包括減少HTTP請求、壓縮HTML、使用語義化標籤等。

從文本到網站:HTML的力量從文本到網站:HTML的力量Apr 13, 2025 am 12:07 AM

HTML是一種用於構建網頁的語言,通過標籤和屬性定義網頁結構和內容。 1)HTML通過標籤組織文檔結構,如、。 2)瀏覽器解析HTML構建DOM並渲染網頁。 3)HTML5的新特性如、、增強了多媒體功能。 4)常見錯誤包括標籤未閉合和屬性值未加引號。 5)優化建議包括使用語義化標籤和減少文件大小。

了解HTML,CSS和JavaScript:初學者指南了解HTML,CSS和JavaScript:初學者指南Apr 12, 2025 am 12:02 AM

WebDevelovermentReliesonHtml,CSS和JavaScript:1)HTMLStructuresContent,2)CSSStyleSIT和3)JavaScriptAddSstractivity,形成thebasisofmodernWebemodernWebExexperiences。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱工具

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。