B
|
berga@alpenacc.net 5/18/2004 |
Maybe I can help you on this. on the create login page, you have to click on the advanced button. Then you can enable, login as guest as an option. But, I don't believe you can hard code the user name and password, but you have to have the users names and passwords as a table lookup, which is the second radial button option on the main "create login" page. then the advanced button will become available, then you can choose login as guest. |
![]() |
swat 5/18/2004 |
james- if login name <>""
if login name = "Guest" ............. go to list.asp
|
![]() |
Sergey Kornilov admin 5/19/2004 |
Hi, Function CheckSecurity(strValue, strAction) if Session("AccessLevel")=ACCESS_LEVEL_GUEST then   if UCase(strAction)="ADD" then     CheckSecurity = True   else     CheckSecurity = False   end if   Exit Function end if ... |