Is info still encrypted if I use a <form action="https"> from a regular http page?
- by John
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?