Rahul -- The Server sets the ASPSessionID if you have enabled the Session state for your web server.
To access the collection of session variables and the corresponding values, you might need to write some code as follows: foreach $key (in $Session->Contents){ $Response->Write(qq{ Session Variable Name is <STRONG> }.$key.qq{</STRONG> which has a stored value of => <STRONG><EM>}.$Session->Contents->Item($key)."</EM></STRONG><BR/>"); } That would get you the list of session variables as well as its values. Cheers, Rex ----- Original Message ----- From: "Rahul Garg" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 03, 2001 2:39 AM Subject: problem in knowing session variables . Hello, i am fetching the asp page by filling in the form. After filling in the form and submitting a request it requests the page . a session is established with some session variables. How could i know what r the session variables involved in while fetching the page. Any suggestions... Thanks, rahul -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]