You mean
<a href="http://123.12.12.231
onClick="this.href+=prompt
???
Main Topics
Browse All TopicsI deal with a webpage that uses a javascript page for it's username/password combination. Is there a way that I can format the URL to just enter my user/pass info and auto-submit it?
For instance: http://123.12.12.231/appli
Something in PHP may be: http://123.12.12.231/appli
It's been forever since I've done any PHP so I imagine that's completely wrong, but you get the idea.
Can it be done?
Thanks in advance.
-Sootah
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You mean
<a href="http://123.12.12.231
onClick="this.href+=prompt
???
Using the POST method, is it possible to format a link to autosubmit w/o the java? What I'd ideally like to do is make a link that's just in my brower's favorites. The other option is to make my own webpage with the link you suggested.
I looked at the code on the page and it uses a standard HTML form to pass the data to the functions.
Here's an excerpt:
<form action="/app/servlet/pe.ap
<input type="text" name="USER_NAME">
<input type="password" name="PASSWORD">
<input type="button" onClick="checkLogin();" value="Sign In">
The checkLogin(); function merely makes sure that the fields are filled out and that cookies are enabled.
Either an HTML link or a link I can put in my brower that will autofill and submit to this form would be fine.
Thanks for your help.
Ended up using this:
---Start example---
<html><body onload="frmLogin.submit()"
<form action="http://www.example
<input type="text" name="USER_NAME" value="your_username_here"
<input type="password" name="PASSWORD" value="your password here">
</body></html>
--end example--
Business Accounts
Answer for Membership
by: SootahPosted on 2007-02-15 at 19:52:42ID: 18545993
Or perhaps can I bang out a small javascript file myself in notepad that will redirect me to the appropriate page and do the same thing? Then I could just make a link to that file in my browser and have it run.