Добавление поля «запомнить меня» в форму авторизации asp - PullRequest
2 голосов
/ 13 мая 2009

Может ли кто-нибудь указать мне правильное направление для добавления флажка запомнить меня для простой страницы входа? В основном он использует только пароль, а не имя пользователя. Возможно ли это?

Вот код незащищенной части страницы asp входа в систему:

'****************** Begin UNprotected content ****************************
'
'   Enter the content you want the user to see prior to loggin in here.
'   Be sure the content is between the < % Else % > and < % End If % > asp
'   tags here. 

%>
<p>Welcome to our Members Only area. Please enter the password we supplied you to Log
In.</p>
<form action="<%= strPage %>" method="post" name="frmMembers" id="frmMembers">
<table id="n3-LogInTable">
    <caption><%= strCaption %></caption>
    <col class="colOne" />
    <col />

    <tr>
        <td nowrap="nowrap">Password</td>
        <td><input name="txtPassword" type="password" class="n3-textField" id="txtPassword" size="30" maxlength="50" /></td>
    </tr>
    <tr>
        <td colspan="2" nowrap="nowrap"><input name="btnLogIn" type="image" id="btnLogIn" src="login/n3_stuff/btn_login.gif" /></td>
    </tr>
    <tr></tr>
</table>
</form>
<% '****************** End UNprotected content **************************** 

1 Ответ

1 голос
/ 13 мая 2009
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...