I am able to login to a database with a generic account (an account without a password that calls up a search form) by clicking on a link for which the href attribute calls a jscript function. What I show below works in IE but not in Netscape or Firefox.
I am pretty new to this stuff and would like to avoid coding to account for cross browser compatibility if possible (still learning). Can someone advise me on how to get the <A> element approach shown above to work in all browsers?
Code:
<div>
<form target="info" method="POST" action="[URL unfurl="true"]http://localhost/scripts/falcon/dmslogin2.exe?login"[/URL] name="SubmitLogin_d1asbuilt">
<input type="hidden" name="startForm">
<input type="hidden" name="UserName" value="d1asbuilt">
<input type="hidden" name="Password" value="">
<input type="hidden" name="cmd" value="login">
<a href="javascript:SubmitLogin_d1asbuilt.submit()">As Builts</a>
</form>
</div>