[2008] Site Requires A Captcha To Login

Mar 2, 2009

I have been testing with logging into my websites using httpwebrequest, i have done it great, but 1 of my sites requires a captcha to login:

[Code]...

View 5 Replies


ADVERTISEMENT

Accessing A Site That Requires Login

Mar 13, 2012

I am trying to create a small program that checks [URL] for a work order every minutes. While I don't know of any API that I can use, I think it would be easy enough to simply check the page and see if there are any new work orders listed. The question I have is how to access the work order page. Every a few minutes field nation logs you out of their website. At that point I am required to log back in again to access my account. How can I automate or bypass this process so that my program and regularly check for new workorders?

View 1 Replies

Captcha - Image Uploader For Site

Jan 31, 2011

I'm making an image uploader for a site but sometimes a captcha from [URL] appears? Is there any code I can use so when the captcha appears, a box with the captcha image appears so I can manually solve it? I've seen some programs that do it so i know it can be done...

View 5 Replies

Build An Application That Will Login To A Web Site, Navigate The Site And Download Files?

Mar 26, 2010

I am not sure if this is possiable but I am looking to build an application that will login to a web site, navigate the site and download files. I would like to do this all in code and able to run multiple instances of the program to get information from many different web sites. Is something like this possiable in VB.net?

View 3 Replies

VS 2008 Submit Form - Login To A Site

Apr 24, 2010

I want to make a function to login to a site but i can't submit the form this is what i tried:

[Code]...

View 8 Replies

Forms :: Login To A Website But Need To Display A Captcha To Logi

May 3, 2011

I have project that Login to a website but need to display a captcha to login.The problem is that the captcha isn't it a static image.It have a dynamic link ( "code.php" ) that shows an image with the captcha.But when navigating in Webbrowser the capctha in picturebox is different.I have some links that imported to a listbox.I want to navigate them all within X seconds.Lets say I want it to navigate each link 60 seconds.[code]

View 2 Replies

Make A Webbrowser Login On A Site (filling Textbox And Clicking Login)?

Jun 18, 2011

I've been trying to make a app that logs into a website. So far it didn't work for me.I have trouble because:

- The "pin" (username) box on the site doesn't have an ID. (Can't use getelementbyid)

- The picture doesn't have an ID either

Codes I've tried:

With WebBrowser1.Document
.All("pin").InnerText = "mypinhere"
End With
End Sub

This should have, in my opinion, filled in the textbox. Now I need to click the login button?Also I found this in the source of the site:

<img src="/media/img/text_AccountPin.gif" alt="Account Pin" width="93" height="10" border="0"> <input type="text" name="pin" class="form" size="15"> </p>

As we can see, it says

name="pin"

So I should be able to use "getelementbytagname" right?Also, the formId is logmein (log me in)

<form id="logmein"....

This is what I came up with:

Dim webbrowserDocForm As HtmlElementCollection = WebBrowser1.document.GetElementsByTagName("logmein")
For Each curElement As HtmlElement In webbrowserDocForm
Dim controlValue As String = curElement.GetAttribute("Value").ToString

[code]....

in the next code it's tagname is "input" or "text"? Because I found:

<input type="text" name="pin" class="form" size="15"> </p>

Code for filling in:

webbrowserDocForm = WebBrowser1.document.GetElementsByTagName("text")
For Each curElement As HtmlElement In webbrowserDocForm
Dim controlName As String = curElement.GetAttribute("name").ToString

[code]....

It doesn't give me any errors no more, but it doesn't work either.

View 3 Replies

Login Directly From One Site Another Site?

Oct 21, 2010

when i am surfing in one site,i want to see the another URL...without going URL directly access the login......for example this is the login page url i want know automatic login to this page [URL]

View 1 Replies

Captcha Popup - Reach A Captcha While Creating Accounts On Some Sites?

Jul 17, 2009

When you reach a captcha while creating accounts on some sites, is there code that would make the program pause and a message box pop up that would ask for input for the captcha code?

View 24 Replies

Download File (from A SSL Web) That Requires Login Id To The Page

Jun 21, 2010

i want to download a file from a SSL web to my local(C:)

[URL]

Scenario: from the web browser(Internet Explorer), i required to login to the site in order to download the file.

in the vb program i pass in this url to download the file (include my password and username): [URL] but what has been downloaded to my C: is the login page(in myfile.txt) but when i use the url on the web browser[URL] i managed to get the file (the actual file).

Question: is there anyway that i can download the file from a login page?

View 4 Replies

Trying To Login - Site Via App

Jan 19, 2010

I am trying to login to hotmail via my vb.net app. I am pretty new and couldnt find any information on this nothing I have tried has worked.

View 4 Replies

How To Login The Site At The Same Time

Jul 17, 2009

I am making a program with some account details stored and the webbrowser so that I could be able to access to the website. I would like to know how I can be able to login the same site at the same time with many accounts when the account details stored on cookies?

View 7 Replies

Login To Site At Same Time?

Jul 17, 2009

I am making a program with account details stored and the webbrowser so that I could be able to access to the website. I would like to know how I can be able to login the same site at the same time with many accounts when the account details stored on cookies?

View 5 Replies

Auto-login To Java Site?

Jun 10, 2011

i have a code works fine about autologin to a website like this


[code]...

View 2 Replies

Communications :: Winhttp Login Site ?

Apr 17, 2012

I'm trying to login this site [url] via winhttp.

How can I login to this site via winhttp?

My code;

Code:

View 2 Replies

Create A Program That Will Login To A Site?

Aug 16, 2009

Im trying to create a program that will login to a site for me, and cant get it to work for some reason. The code on the site im logging on to looks like this

<!--<p class="pleaselogin">Please Log In!</p>-->
<div style="MARGIN-TOP: 1px; COLOR: rgb(153,0,0); FONT-SIZE: 12px"
><b>Member Login</b></div>
<br>Sign in for more FREE features and tools!<br><br>
<form method="post" action="http://my.domain.com/login

[Code]...

View 2 Replies

Fill The Value For The Login Page Of Site?

Dec 7, 2011

im trying to to fill the value for the login page of site here the html code

<input type="text" placeholder="Email" class="login_textbox" name="username" id="username" tabindex="1"> i tried this but doesnt work WebBrowser1.Document.GetElementById("username").Se tAttribute("value", "elvin")

View 1 Replies

Make A Site's Login Form?

Aug 18, 2011

i would like to make a site's login form. But from another site attracts ids. I could not.[URL]

View 4 Replies

Use Webbrowser Site Login Screen?

Feb 13, 2010

automatic login to a website I want to use webbrowser site login screen, but you do not open the popup site is directed to the main page.How can I solve this problem

View 3 Replies

VS 2008 - Threaded Ping - Click Another Site While Its Still Pinging Them It Doesn't Wait Before It Switches Site

Feb 9, 2010

Ive got an app that holds a list of site we have, At each site there are a few devices. The idea is when they click on a site all the details for the site are loaded and then a second thread sits and pings each device to see if its live. Im trying to do this in a seperate thread so if they click another site while its still pinging them it doesn't wait before it switches site. This all seems to be workling fine except if you click through the sites quickly, when you do that it will eventually come up with

Quote:

{"Collection was modified; enumeration operation might not execute."}

The error flags up on the "Next" line in "ThreadedPing"

Thread stuff

Public Sub ThreadedPing(ByVal dt As DataTable)
Try

Dim dr As DataRow

[CODE]...

View 2 Replies

Asp.net - Automatic Logout When Login In Other Site In The Same Server?

Oct 11, 2011

We develop 2 sites in asp.net, this both use forms authentication, when a user login in one of this sites it work fine, but if login into the second site, it's logout for the server of the first site, the authentication of both sites have the same usecontrol.

View 1 Replies

Automatically Login To A Website And Then Do A Search On The Site?

Jul 21, 2009

I'm making a winform program to automatically login to a website and then do a search on the site. Problem is, it works for one site but not for another.

Here's the code:

Code:
Dim cookies As CookieContainer = New CookieContainer
Try

[Code]......

View 9 Replies

How To Login A Site From A Windows Form Application

Mar 14, 2009

how to login a site from a windows form application

View 5 Replies

Site Login Webrequest / Response (Aspx)

Feb 27, 2012

For my work i'm making a console program that log in into a a website ([URL]) The problem is i can grab the login page and read out the viewstate & EventValidation But when i try to submit my login details i get a error.

View 1 Replies

VS 2010 Connect VB App To HTML Site And Login In It?

Mar 27, 2012

I need to connect my VB app to html site and login in it...after that I need to view informations in labels may be it will be with ID or anything alse I do not know...[URL]I only need to log in from VB application form with out any webbrowsers and something alses...

P.s. I have my username and password on this site but I want do log in with my VB app...

View 9 Replies

Auto-login To Sharepoint Site Which Uses Windows Authentication?

Nov 10, 2011

How to login to windows authenticated sharepoint site automatically without prompting for credentials using VB.net.

View 1 Replies

VS 2008 Grabbing Captcha From Web Client

Mar 18, 2010

I'm working on adding a de-captcha into one of my programs but I can't seem to be able to grab the captcha from the web browser.I don't think I can just parse the URL and use webrequest to download it as it'll be a different string once it's reloaded.

View 1 Replies

VS 2008 : Prompt A User To Enter A Captcha?

Aug 22, 2010

I'm trying to figure out how to prompt a user to enter a captcha. Some programs out there have a little popup with the captcha image and a textbox, the user then enters the characters from the image and the captcha is solved by the user of the application. When I try to request the image directly, it gives me a different image than the one currently in the webbrowser control. Any ideas how I can create the pop up of this captcha image for the user to enter?

Note : . I'm looking for a way to prompt the user to enter a captcha from website.

View 6 Replies

VS 2008 Dll Login System - Make Another Interface Window That The User Can Login In

Oct 16, 2009

I'am trying to make a login system with the dll. I want the .dll file to have the password inside of it and make another interface window that the user can login in.

View 10 Replies

VS 2008 Make Login Form That Will Login To A Website With WebBrowser Control

Feb 24, 2011

For the past couple of days I have been using Visual basic 2008 and learning it.Anyway, I am trying to make a login form that will login to a website with WebBrowser control.and I am noticing that the webbrowser is extremly slow, it takes him about 20 seconds to load a page while mozilla opens it in a moment, why is that?

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved