#{extends '../../main.html'/}# #{set title:'Html Reference'/}# #{set tab:'management'/}# #{renderTagArgs '../docHome.html'/}#

Html Form Input Result

Hi ${firstName}$





The Code

The Controller GET method for this page is:

*[	public Render inputTextResult() {
		String firstName = Current.flash().get("firstName");
		return Actions.renderThis(
				"menu", menuCreator.getMenu(),
				"firstName", firstName
				);
	}]*

The html for this page is simply:

*[

Html Form Input Result

Hi ${firstName}$

]*