Unbranded cost and cookies

Author Message
Guest
Unbranded cost and cookies - Mon. Jun 14, '04 4:08 PM
0
Two things:
1) How much does the unbranded version cost?
2) How hard would it be to modify your code (after I bought it) to run a sessionless (our shop doesn't allow sessions) cookie-based version of your code?
Thanks!

Samuel
  • Total Posts : 11785
  • Reward points : 168230
  • Joined: May 23 '01
RE: Unbranded cost and cookies - Mon. Jun 14, '04 9:43 PM
0
1) Please contact info@aspplayground.net for information

2) Weit should be very easy, because we use the following functions to manage session:

sub sessAssign (sessName,sessValue)
 	session(dbName&sessName) = sessValue
 end sub
 
 sub sessRemove (sessName)
 	session.contents.remove(dbName&sessName)
 end sub
 
 sub sessSetTimeout (timeout)
 	session.timeout = timeout
 end sub
 
 function sessRead (sessName)
 	sessRead = session(dbName&sessName)
 end function
 
 function sessReadID
 	sessReadID = session.sessionID
 end function
 
 function sessReadTimeout
 	sessReadTimeout = session.timeout
 end function
 
 sub sessAbandon
 	call sessRemove("MemInfo")
 	Dim cookieKey
 	for each cookieKey in request.cookies
 		if instr(cookieKey,dbName)>0 then _
 			response.cookies(cookieKey).expires = date-1000
 	next
 end sub
 
What I mean is that you only need to change the session code in one location. However, there is one implication for using cookies: you will need to find a way to encrypt the data because the cookies will be travelling back and forth on each request.

Let me know if you have other questions
ASPPlayground.NET
~ see our Version 4 plans here