Last active
August 29, 2015 13:56
-
-
Save andyj/9190800 to your computer and use it in GitHub Desktop.
sameFORMFieldsAsArray in Railo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
component output="false" { | |
this.name="test"; | |
this.sameFORMFieldsAsArray = true; | |
public function onApplicationStart() output="false"{ | |
return ; | |
} | |
public boolean function onRequestStart(required string thePage) output="true"{ | |
return true; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
<form method="post" action="#cgi.script_name#"> | |
<input name="name" type="text" value="Peter" /> | |
<input name="name" type="text" value="Susi" /> | |
<input type="submit" value="send" /> | |
</form> | |
</cfoutput> | |
<cfdump var="#form#"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment