Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML - Log On & Password 1

Status
Not open for further replies.

Rocket8888

Technical User
Dec 27, 2004
3
US
Hello,

I am trying to find any documentation and/or help with a project I am currently working on. I am trying to set up a web page to automatically insert a generic low security user id & password when the user visits the page, simply to view reports. I was told to use the following after the actual url for the web page:

/:signon:password

But this is not working out for me. I tried other variations, but no luck.

Any guidance would be greatly appreciated.

Thanks!
 
Hi,

You used to be able to use [ignore]username:password@domain.com[/ignore] but due to serious security implications of this, it has been disabled in Internet Explorer.

Hope this helps

Wullie

Fresh Look - Quality Coldfusion Hosting

The pessimist complains about the wind. The optimist expects it to change. The leader adjusts the sails. - John Maxwell
 
it's been disabled client-side, so inErnet or intrAnet are inconsequential.

why don't you use POST variables? You can have the link to the page submit the form and therefore pass POSTs to the new page, no matter what domain you're going to/from. This is more secure anyway because the users will never see the usern/password and you then have the option of encrypting it, https, etc.
 
Hmmm...supposedly from what I was told. When setting the page up, if I include in the url the logon and password, within the url, that it would go to the web page in question and insert the logon/password to access the web site.
 
If the login page uses a simple form, you may be able to do this:
Go to the login page and view the html for it. Check the action part of the form, this is where the username/password are submitted. Then look at the input fields for entering the username and password and note their names. Then try setting your link to:
Code:
<a href="[URL unfurl="true"]http://the.url.of/the/form/action.html?signon=someuser&password=somepass>[/URL]
Where 'signon' is the name of the username input and 'password' is the name of the password input from the login form.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top