Bogdan Bora

Greenhorn
+ Follow
since Jul 03, 2014
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 Bogdan Bora

Hi,


There is no error.

String callImp = request.getParameter("callImp") returns null no matter what. No error, just the effect.

Thanks
9 years ago
JSP
Hei,

That was a mistake from my part, but it doesn't change anything. It still passes null.
9 years ago
JSP
Hi everybody,

I have the following code:

<% String callImp = null;

callImp = request.getParameter("callImp");

System.out.println("Call Importer: " + callImp);

if (callImp == null){
System.out.println("Aici null");
%>

and i have an url : /something/welcome.do?callImp="aa"

Why is getParameter always returning null?

Thanks guys
9 years ago
JSP