darrell... thanks for the reply... i had started to think something along the same thing... as far as i can tell.. it's the only place were that occurs...
so i'll put that one to rest... but since you repsonded, i have a www::mechanize question... i'm looking at the utexas austin site.. https://utdirect.utexas.edu/registrar/clavnew/clav3.WBX?s_semester=su2004 the underlying html, implies that there is some method that they're using to send multiple forms????? do you know if www::mechanize can be used to essentially log into the site/page.. i would have thought it would have been doable, by sending the EID/passwd, and possbily the CDT, NEW_PASSWORD, CONFIRM_NEW_PASSWORD, and PASSWORDS values... but i'm not sure .... any comments/criticisms/help/etc.. is appreciated... thanks -bruce the html in question is below... ---------------------------------------------------------------- <table> <!-- sorry about the embedded tables, but to make the content work with the double forms below, it seemed like the only way --> <form method="POST" name="logonform" action="/security-443/logon_check.logonform"> <!-- two forms to force Netscape 4.76 to submit form when you press enter --> <input type="hidden" name="CDT" value="20040602133522"> <input type="hidden" name="NEW_PASSWORD" value=""> <input type="hidden" name="CONFIRM_NEW_PASSWORD" value=""> <input type="hidden" name="PASSWORDS"> <tr> <td class="content"> <label for="eid">UT EID:</label> </td> <td> <input type="text" name="LOGON" id="eid" value="" size="15" maxlength="15" onchange="mirrorForms()"> </td> </tr> </form> <tr> <td colspan="2"> </td> </tr> <tr> <form method="POST" name="logonform2" action="/security-443/logon_check.logonform"> <!-- onsubmit="return checkLength()";> --> <input type="hidden" name="CDT" value="20040602133522"> <input type="hidden" name="NEW_PASSWORD" value=""> <input type="hidden" name="CONFIRM_NEW_PASSWORD" value=""> <input type="hidden" name="LOGON" value=""> <td class="content"> <label for="pw">Password:</label> </td> <td> <input type="password" name="PASSWORDS" id="pw" value="" size="15" onchange="mirrorForms()"> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> <td> </td> <td> <input type="submit" value="Log In"> </td> </form> </tr> </table> ----------------------------------------------------------------