I am having a problem with my form doing a specific action on my form. The code is as follows:
<form id="frmUserLogin" method="post" action="modules.aspx" runat="server" enableviewstate="true">
I need that from this form, once the user has logged in and has been verified as a valid user, to move (action) to the next webpage (modules.aspx).
It is not doing that. The user name and password is verified and correct and it won't move to the next page. What am I doing wrong? Please help!
<form id="frmUserLogin" method="post" action="modules.aspx" runat="server" enableviewstate="true">
I need that from this form, once the user has logged in and has been verified as a valid user, to move (action) to the next webpage (modules.aspx).
It is not doing that. The user name and password is verified and correct and it won't move to the next page. What am I doing wrong? Please help!