Struts 2 s:hidden UI tag
<s:hidden>: The <s:hidden> tag is used to create a HTML hidden field. Syntax: <s:hidden name=”fieldName” value=”fieldVale”/> Example: test.jsp <%@ taglib uri="/struts-tags" prefix="s"%> <html> <head> <title>Struts 2 s:hidden UI tags example</title> </head> <body> <h3>This is a s:hidden UI tags example.</h3> <s:property value="message" /> <br/> <s:form action="hiddenTest"> <s:hidden name="website" value="826.a00.myftpupload.com"/> <s:submit value="Submit"/> </s:form> </body> … Read more