Forum Themes:
Welcome !

 Unbranded cost and cookies

Author Message
Guest
Unbranded cost and cookies Mon. Jun 14, '04 4:08 PM (permalink)
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!
 
#1
Samuel

  • Total Posts : 11128
  • Reward points : 106390
  • Joined: May 23 '01
  • Status: offline
RE: Unbranded cost and cookies Mon. Jun 14, '04 9:43 PM (permalink)
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 Developer
 
#2
Online Bookmarks Sharing: Share/Bookmark

The admin has set up some restrictions to prevent link (URL) SPAM.
Details...
  Enter the code shown; Click image to refresh.
Post Message   Preview
Jump to:

Current active users

There are 0 members and 1 guests.

Icon Legend and Permission

  • New Messages
  • No New Messages
  • Hot Topic w/ New Messages
  • Hot Topic w/o New Messages
  • Locked w/ New Messages
  • Locked w/o New Messages
  • Read Message
  • Post New Thread
  • Reply to message
  • Post New Poll
  • Submit Vote
  • Post reward post
  • Delete my own posts
  • Delete my own threads
  • Rate post

2000-2010 ASPPlayground.NET Forum Version 3.8