Example #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        string url = HttpContext.Current.Request.Url.Query;

        string output = url.Substring(url.IndexOf('?') + 1);

        if (client.Validate(output) == true)
        {
            LabelVerificationYes.Visible = true;
        }
        else
        {
            LabelVerificationNo.Visible = true;
        }
    }