I have below form in html page
<form name="input" action="sayHello1.jsp?param1=test1" method="get">
Username: <input type="text" name="user">
<input type="submit" value="Submit">
</form>
i enter the value "test" in text box and submit it.
I expect to see the submitted URL in browser as
http://localhost:8080/helloWorld/sayHello1.jsp?param1=test1&user=test
but i see the url as
http://localhost:8080/helloWorld/sayHello1.jsp?user=test
why so ?