Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Session ID

Status
Not open for further replies.

notrut

Programmer
Feb 6, 2002
87
CA
How would you get the sessionID using JSP?

I have the following code written using ASP and I want to convert it to JSP.

'Establishes the Session ID
Function GetThisSessionID()
On Error Resume Next

Dim strValue

strValue = session.SessionID

If Err.Number <> 0 then
strValue = "0"
Err.Clear
end if
GetThisSessionID = strValue

End Function

Any help would be greatly appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top