Lonkero,
Thanks for the offer but i'm on a limited budget.
As for info on my issue here we go...
Modifying Shawn's script I am able to input the logon info as well as the data to update on the next page. But I haven't figured out how to click the "Login" button. The Google page is all HTML so finding the identifier for the '.click' command is the same as all the other fields. But my site is using JAVA for the button. Is there something different that I need to do to click a JAVA button?
By the way here's the script I'm using to get to the logon page.
code:
Break On
$ID = 'A name'
$PW = 'A password'
$URL = "https://169.218.243.162/script/lb_login.asp"
$IE = CreateObject("InternetExplorer.Application")
$IE.Visible = 1
$IE.Navigate($URL)
sleep 2
sendkeys('{enter}'); to clear the "Secure Logon information" window
sendkeys('y'); To clear the "Certificate not updated" window
While $IE.Busy and $IE.ReadyState <> 4 and @ERROR = 0 Loop
$IE.Document.lblogin("custid").Value = $ID
$IE.Document.lblogin("pw").Value = $PW
$$IE.Document.lblogin("javascript:login").click() ; I don't know what the Identifier is to hit the button
Exit 0
I will post the source code of the page if any one wants it, but I'm just hoping for a clue to what to look for.
Again thanks for any help you offer,
J
[ 11. October 2003, 01:47: Message edited by: jacks73 ]