tags:

views:

82

answers:

2

A password-protected area of a website I work on has always been entered by linking to the address, which presents the user with a dialog to enter their username and password.

I would like to use a form to enter that information, but I can't work out how it's done and whether it's possible. Help please!

Edit: Does anyone have any ideas here?

A: 

Related: Internet Explorer does not support user names and passwords in Web site addresses (HTTP or HTTPS URLs)

I know that's not a solution, but it may prove relevant depending on what recommendations you get here.

lance
+1  A: 

HTTP authentication is different from form authentication where the processing script authenticates the client. The form data is send in either the URL (GET) or the HTTP message body (POST). But HTTP authentication requires the data to be send in a specific HTTP header field (WWW-Authenticate) and there’s no way to get form data into that field for HTTP authentication.

Gumbo