Hi,
I've a question regarding submitting my username and password encrypted.
I knew that if I submit my username and password under a https:// (SSL) page, even the action page is not a full path, my username and password will send encrypted.
My question is in the below situations, are my username and password send encrypted before it leaves my computer?
1) In the front page, I submit the form to an action page with full SSL path, will the data encrypted before it send to the page? What I mean is like this, I've a front page called
http://www.domainname.com/home.asp and the login form in the front page sumbit to action="https://www.domainname.com/checklogin.asp" will the username and password encrypted through SSL before it pass to the server.
2)In the same page
http://www.domainname.com/home.asp, I submit my username and password to action="checklogin.asp" then forward the login sesssion to a secured page to display the account information, will my username and password encrypted before it leaves my computer?
Thank you in advance.