CF10 getPageContext().getRequest().getParameter("param")
Is there a setting within CF10 CFAdmin that allows me to get to the getPageContext().getRequest().getParameter("param")?
In CF10:
<form name="test" method="post">
<input type="text" name="username" value="user.name" >
<input type="submit" name="submit" value="submit" >
</form>
<cfdump var="#GetPageContext().getRequest().getParameter('username')#" />
the 'cfdump' displays undefined when form is submitted.
In CF9, the same piece of code, the 'cfdump' displays the value for 'username' which is 'user.name'.
