Hi All,
I'm running into an issue, where when I create over 100 different form elements 
with different content I get a 500 error. I'd like to increase this number up 
from 100 however I can't find an area to do this.

My original thought was that it was in the ColdFusion Administrator --> 
settings --> "Maximum size of post data" however, when I upped this, it had no 
effect on the number of post variables. I think this setting seems to be the 
post variable size, as like for file uploads ect...

I'm running on ColdFusion 9.0.2 and when I run the code below and hit submit I 
receive an error. Anyone have any ideas?

<form action="" method="post">
        <cfoutput>
        <cfloop from="1" to="100" index="i">
            <input name="txtBox#i#" type="hidden" value="txtValue#i#" />
        </cfloop>
    </cfoutput>
    <input type="submit" name="txtButton" />
</form> 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351760
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to