grabbing pages from password protected pages ?
Hi,
I have a system I need to login with userid/pass before I can access it, is there a way to grab such pages with Sunrise ?
some of the login page's code is like:
--------------
function LoginCheck(frm)
{
if (frm.username.value=='' && frm.password.value=='') {
alert('Please enter your username and password...');
frm.username.focus();
return false;
}
if (frm.password.value=='') {
alert('Please enter your password...');
frm.password.focus();
return false;
}
return true;
--------------
<LABEL accessKey=U for=username><b><U>U</U>sername:</b></LABEL>
<input type="text" AUTOCOMPLETE="OFF" id="username" name="username" value=""size="20" maxlength="80" class="text_inbox" onchange="if(value.toLowerCase) value=value.toLowerCase();" tabIndex="1"></td>
<LABEL accessKey=P for=password><b><U>P</U>assword:</b></LABEL>
<input type="password" AUTOCOMPLETE="OFF" id="password" name="password" size="20" maxlength="80" class="text_inbox" tabIndex="2">
----------------
|