Jump to content

  •  

  • iBotModz CBox


    ikizmert

    Member Since 28 Nov 2012
    Offline Last Active Dec 01 2012 01:58 PM
    -----

    Posts I've Made

    In Topic: C# Loading reCaptcha into a imagebox

    29 November 2012 - 07:46 AM

    okay but i don't understand this working logic. How can i work :no ? Plesae help

    In Topic: C# Loading reCaptcha into a imagebox

    28 November 2012 - 05:07 PM

    It seems the recaptcha code has changed.

    			 if (images.GetAttribute("OuterHtml").Contains("http://www.google.com/recaptcha/api/image?"))
    			 {
    				 string url = images.GetAttribute("OuterHtml");
    				 break;
    			 }
    

    That would work, but then you'll need to create some regex to pull the correct stuff out of that url var. It seems recaptcha is changing, but no offense this topic is like 3 years old.

    (images.GetAttribute("OuterHtml").Contains("http://www.google.co...cha/api/image?") = FALSE ; its didnt work.

    but no offense this topic is like 3 years old. i not knowing im sorry... my english easy, i used google translate :))
    Thank you anyway...

    In Topic: C# Loading reCaptcha into a imagebox

    28 November 2012 - 04:38 PM

    My code is not is not working,

    private void btnKayit_Click(object sender, EventArgs e)
    	 {
    		 webBrowser1.Navigate("http://xpblogger.com/register.php");
    	 }
    
    foreach (HtmlElement images in webBrowser1.document.Images)
    {
    
    if (images.GetAttribute("src").Contains("http://api.recaptcha.net/noscript?k="))
    {
    string url = images.GetAttribute("src");
    pictureBox1.ImageLocation = url;
    break;
    }
    }

    if (images.GetAttribute("src").Contains("http://api.recaptcha...et/noscript?k=")) type is FALSE
    Please help me. Thank you..