vijai sahu

Greenhorn
+ Follow
since May 29, 2008
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 vijai sahu

can anybody tell me in my jsp application some time when i am clicking on hyperlink its redirect page to login page
due to geting data from session .how i can resolve this.the code snippet is
try
{
String sub_id=(String)session.getAttribute("subscriber_id");
sub_id=sub_id.trim();
System.out.println("Subscriber Id ="+sub_id);
}catch(Exception e)
{
System.out.println("Error in getting data from session!");
String urlE = "http://"+request.getServerName()+":"+request.getServerPort()+"/cdr/jsp/login.jsp";
response.sendRedirect(urlE);
}
15 years ago
JSP