I've just started working on an aspx web from login page for AspNet.Identity. I have my fields, username and password (textmode="Password") and a submit button (asp:button) as usual with my code behind to do login, etc.
My question is, when my user clicks submit, how is the password sent to the server? Do I need to be on SSL to ensure that the password isn't sent in cleartext?
Edit StackOverflow's login page isn't over HTTPS - how do they (and other sites that don't use HTTPS) manage password transmission?