| Author |
Extracting Values From Single Cookie
|
Rocky Khan
Greenhorn
Joined: Oct 18, 2011
Posts: 11
|
|
Guys I am linking two web applications one written in ASP .NET and another in JSP..
I need your help concern about Cookie i have created a Cookie in ASP .NET..
Name:UserID
Value:UserID=1305&Pwd=As123
By the following code i am getting only Name which is as shown below
I want to extract only UserID from Cookie value but i am unable to get it by getValue() function..
Thank You in Advance..
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56549
|
|
/slaps-forehead
Are you still putting Java code in JSPs? That's a bad practice that's been discredited for almost 10 years now. Also, generating HTML in Java String in a JSP is another red flag. The whole purpose of a JSP is so that you can put HTML directly into template text.
Why are you not doing this in a servlet?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Extracting Values From Single Cookie
|
|
|