Question : mozilla keeps session even if close it

Hi Experts,
I am using session time out to avoide users have access to my site without logging in.
here is my aplication.cfm page with some codes that ends session when the client side browser be closed.
It's fine with chrome and IE but not Mozilla
how can I have something that works in all popular browsers?
thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
<cfapplication name="MyApp" 
clientmanagement="yes"
sessionmanagement="Yes"
setclientcookies="no"
sessiontimeout="#CreateTimeSpan(0,0,20,0)#"
applicationtimeout="#CreateTimeSpan(0,2,0,0)#"> 

<cfparam name="Session.allowin" default="false">

<cfparam name="Session.MM_Login_ID" default="0">


<cfif session.allowin neq "true">
      <cfif ListLast(CGI.SCRIPT_NAME, "/") EQ "index.cfm">
      <cfelseif ListLast(CGI.SCRIPT_NAME, "/") EQ "login_process.cfm">
      <cfelse>
      <script>
              alert("You must login to access this area!");
              self.location="index.cfm";
      </script>
      </cfif>
</cfif>


<cfif IsDefined("Cookie.CFID") AND IsDefined("Cookie.CFTOKEN")>
      <cfset cfid_local = Cookie.CFID>
      <cfset cftoken_local = Cookie.CFTOKEN>
      <cfcookie name="CFID" value="#cfid_local#">
      <cfcookie name="CFTOKEN" value="#cftoken_local#">
</cfif>

Answer : mozilla keeps session even if close it

I'm so sorry....
I didn't lock the range. Please see below.

=IF(ISNA(VLOOKUP(A2,$C$1:$D$21,2,FALSE)),"",VLOOKUP(A2,$C$1:$D$21,2,FALSE))
Random Solutions  
 
programming4us programming4us