JSP Form With Pre-filled Values

Descripción

Form with JSP EL prefilled value


File Template: ❌


Prefix

jsp:formvalue


Scopes

jsp


Snippet de código

<form action="${1:/action}" method="post">
	<label for="name">Name:</label>
	<input type="text" name="name" id="name" value="${item.name}">
	<button type="submit">Enviar</button>
</form>