Is info still encrypted if I use a <form action="https"> from a regular http page?
Posted
by John
on Stack Overflow
See other posts from Stack Overflow
or by John
Published on 2010-03-30T15:06:47Z
Indexed on
2010/03/30
15:13 UTC
Read the original article
Hit count: 345
Say I'm at the url http://mysite.com/form.html
. When viewing source, I see
<form method="post" action="https://mysite.com/process">
<input type="text" name="user" value="information">
<input type="submit">
</form>
If I hit the submit button, will the form information be encrypted when it's sent to the process page/controller?
© Stack Overflow or respective owner