| First, set the database path : |
CSession.DatabasePath "relative-path" (default /mdb-database) |
| A HREF Links : |
<a href="javascript:gotoPage('mypage.asp')">Link</a> |
| Form post/get : |
<form action="mypage.asp" onsubmit="doSubmitWithSessionID(this)"> |
| ASP Redirection : |
CSession.Redirect "mypage.asp" |
| Set a value : |
CSession.SetSession "variable-name", "variable-value" |
| Get a value : |
ret = CSession.GetSession "variable-name" |
| Remove value : |
CSession.Remove "variable-name" |
| Purge values : |
CSession.RemoveOld() |
| JavaScript Redirect : |
gotoPage("mypage.asp") |
| JavaScript open : |
windows.open("mypage.asp?SessionID=" + GetSessionID()) |