Ramakanta,
You have misunderstood the basic concept here.JSPs,
servlets are executed in the server side.You got both your codes (input text box) and request parameter to print out in the same
JSP ?
It will return nothing (no values ) because when your JSP is called , you do not have t11 in requestScope , which is yet to be rendered as HTML to the user.
So the flow should be call a input.jsp where you get the username and submit to query.jsp , where you print it out requestScope.t11 and use it in sql tags.