Populating web page login details automatically from Access application

S

Simon Morgan

I have an Access application in which users occasionally need to get
information from an external website. The site requires username and
password.
How do I do the login automatically as new users can never remember
the login details. Also it is more elegant for the web page to be
displayed when users click on a button.

Any help or code gratefully received.

I copied an extract of the remote web page coding as shown below:

<h4>Login:</h4>
<form action="login.jsp" method="post">
<p class="login">Username:</p>
<p class="login"><input class="login" size="15" name="user" value=""
/><p/>
<p class="login">Password:</p>
<p class="login"><input class="login" name="pass" size="15"
type="password" /><p/>
<p class="login"><input checked="checked" size="12" name="remember"
type="checkbox" value="yes" />Remember me</p>
<p class="login"><input name="neverTimeout"
type="checkbox" value="yes" />Never time out</p>
<p class="login"><input type="submit" value="Login" /></p>
</form>


Simon Morgan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top