<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <html> <form action="index.jsp"> <body> First INPUT: <input name="firstinput" type="text" value=<%=request.getParameter("firstinput") %>> <br> <input type="submit" value="Submit"> <% String first = request.getParameter("firstinput"); out.println(first); %> </body> </form> </html>
Ths is my code when Put Input tax, after Button presses its set on tax and tax with stamp, but when I enter tax "tax", then the value is set as tax in the input field, and Print is correct "tax " I want to set the input field the value is also βtaxβ, when I take the input βtaxβ after clicking, please help
source share