Return to Snippet

Revision: 33996
at October 15, 2010 20:11 by sikwan


Initial Code
Function requestSession()
	Dim Temp
	i = 0
	For each d in Session.Contents
		if i = 0 then
			Temp = Temp & d & "=" & Session.Contents(d)
		else
			Temp = Temp & "&"& d & "=" & Session.Contents(d)
		end if
		i = i+1
	Next
	requestSession = Temp
End Function

Initial URL


Initial Description
This function return a string with all the Session parameters and their values.

Initial Title
List all Session Parameters

Initial Tags


Initial Language
ASP