I'm trying to use a master page, and set the form action and method to something other than the default:
<form name="aspnetForm" method="POST" action="memberPage.aspx" id="aspnetForm">. This is how it appears when I view the source from a browser
I'm trying to set up an "Auto login" form, that will re-direct users to another website, and log them in automatically. When I set the form to:
<form action = https://login.aspx id="form1" method = "POST" runat = "Server"> but it just keeps posting back to itself.
How can I set the form action with a master page?