Good morning(my time) Lonkero,
Thanks for the direction.
Here's the page's source code
code:
<html>
<head>
<title>thesite.Com Login</title>
<script>
<!--
function login_onclick()
{
// Validations
if ( isNaN(document.lblogin.custid.value))
{
alert( "Please enter a valid ID" );
document.lblogin.custid.focus();
return;
}
if ( document.lblogin.custid.value=="" )
{
alert( "Please enter ID" );
document.lblogin.custid.focus();
return;
}
if ( document.lblogin.pw.value=="" )
{
alert( "Please enter Password" );
document.lblogin.pw.focus();
return;
}
// all is well
document.lblogin.posting.value = 1
document.lblogin.submit();
return;
}
//-->
</script>
<style type="text/css">
<!--
body,p,table,tr,td,ul,li { font-family: Arial, Helvetica, sans-serif; font-size: 9pt; color: #000000;}
.roll1 { font-family:Arial; font-size:8pt; font-style:normal; font-weight:bold; color:white; }
A.roll1:hover { color:yellow; }
.roll2 { font-family:Arial; font-style:normal; font-weight:normal; color:black; }
A.roll2:hover { color:red; }
-->
</style>
</head>
<body onLoad="document.lblogin.custid.focus()" bgcolor="#FFFFFF">
<table border="0" width="600" align="center">
<tr>
<td height="40"><img src="/images/loanbright02.gif" width="261" height="34"></td>
</tr>
<tr bgcolor="#333366">
<td height="19">
<div align="center">
</div>
</td>
</tr>
<tr>
<td height="300">
<form action="lb_login.asp" method="post" name="lblogin" id="lblogin">
<input type="hidden" name="posting" value="0">
<table width="400" border="0" align="center">
<tr bgcolor="#cccc99">
<td colspan="2">
<div align="center"><b>Login Information</b></div>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center"><i>ID and Password are required for access.</i> </div>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="195">
<div align="right">ID</div>
</td>
<td width="195">
<input type="text" name="custid" size="20" maxlength="20" value="1246">
</td>
</tr>
<tr>
<td width="195">
<div align="right">Password</div>
</td>
<td width="195">
<input type="password" name="pw" size="20" maxlength="20" value="">
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="195" height="25">
<div align="right">
<a href="javascript:login_onclick()"><img src="/images/login.gif" width="76" height="24" border="0"></a></div>
</td>
<td width="195" height="25"> <a href="javascript:window.location.href='/default.htm'"><img src="/images/cancel.gif" width="76" height="24" border="0"></a>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2">
<div align="center">Forget your password or having problems? Please <a class="roll2" href="mailto:support@loanbright.com">drop
us a line</a>.
</div>
</td>
</tr>
</table>
<table border="0" width="600" align="center">
<br>
<tr>
<td colspan="3" align="center">
<font size="3" face="Arial">
<b>Want to automatically distribute our Leads to your Loan Officers?<br>
Want to keep track of how your leads get worked?<br>
Want to improve conversions from lead to closed loan?</b><br>
</font>
<br>
</td>
</tr>
<tr>
<td width="291">
<div style="text-align: justify">
<p><!-- -->LoanBright has a new mortgage industry specific Sales Force Automation tool we call
our "Response Management System" or RMS.</p>
<p><!-- -->The LoanBright RMS system allows a sales manager or supervisor to automatically distribute
CompareInterestRates.Com leads, in real time, to his/her loan officers using business rules or filters.
The LoanBright RMS system then tracks and keeps track of how fast each loan officer first contacts each potential borrower.</p>
<p><br><center><b>The LoanBright RMS system:</b></center></p>
<p><ul>
<li>Automatically distributes leads in real time to your loan officers - even in remote offices.</li>
<li>Eliminates the need for email forwarding or printing and manual distribution of leads.</li>
<li>Tracks how fast each loan officer contacts each potential borrower.</li>
<li>Keeps track of how many leads each loan officer has received.</li>
<li>Allows you to compare and contrast loan officer performance.</li>
<li>Provides new loan officers with a turnkey sales process.</li>
<li>Provides sales managers with a robust set of sales analytics reports.</li>
</ul></p>
</div>
</td>
<td width="18"> </td>
<td width="291">
<div style="text-align: justify">
<p><!-- -->The bottom line is the LoanBright RMS system provides you with a tool to better manage
your leads and your sales force, resulting in better conversions from lead to loan application to closed and funded loan. </p>
<p><!-- -->Using the LoanBright RMS system will improve management productivity, dramatically increase revenues and lower your
marketing costs per closed and funded loan.</p>
<p><!-- -->Because the system is 100% web browser-based, there is no software to install. Loan Officers just navigate their browser
to the appropriate web address and begin utilizing the Sales Force Automation functionality of the LoanBright RMS system.
Because the application is web-based, loan officers can utilize the system working from any location with Internet access.</p>
<p><!-- -->If you need more information on the LoanBright RMS system, please call your account executive at 888-330-3330 or
email us at <a class="roll2" href="mailto:sales@loanbright.com?subject=I want more information on RMS">sales@loanbright.com</a></p>
<p><br><br><br><br><br><br></p>
</div>
</td>
</tr>
</table>
</form>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="19"> </td>
</tr>
<tr>
<td>
<div align="center"><font color="#000000" face="Arial" size="1">Copyright
© LoanBright 2000 - 2003, All Rights Reserved.</font> </div>
</td>
</tr>
</table>
</body>
</html>
What I'm trying to do is to login to this page to get to the next page and enter some data. If the site were mine I could just have the site itself pull the data. However, it is a hosted site so I can't. The information only changes on a daily basis but my boss wants to post to it frequently. This site is an information gathering page for another search page that posts this data to customers, and my boss wants to achieve one of the first three positions.