if condition
Hi all
my code is like this
String name = request.getParameter("txtName");
out.print("Hello "+name);
if(name == "Sree")
{
out.print("Entered");
}
I passed the value of a text box with name txtName. I entered the word Sree.
It is showing as Hello Sree. but the Entered string is not displaying

