Jason Taylor

Greenhorn
+ Follow
since May 25, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jason Taylor

<% session.invalidate()%>
20 years ago
JSP
What is the best way to handle transactions for an online store. Other than paypal? In other words if you want someone to be able to place an order how do you go about keeping their credit card info safe and then placing the money in an account. I had heard that a bank might give you a cgi script that you can paste into your jsp code, is there any truth to this?
20 years ago
JSP
You must explicitly define a session object, another thing if you are using jsp and you want to retrieve the object you placed in the session you must typecast the object,that was placed in the session, back to what it originally was.
20 years ago
JSP
this is a guess and Im no expert but dont you need to typecast the object you inserted into the session back to what it was when you put it in.
Then it looks like you need to use the object getmethods to retrieve the info you desire.
ie
Someobject temp = (Someobject)session.getAttribute("name");
20 years ago
JSP