2009-05-13 3 views
2

누구나 간단한 로그인 페이지에 나를 기억 확인란을 추가하는 올바른 방향으로 나를 가리킬 수 있습니까? 기본적으로 사용자 이름이 아닌 암호 만 사용합니다. 이것이 가능한가? 여기 asp 로그인 양식에 "remember me"상자 추가

은 로그인 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 **************************** 

답변

관련 문제